-
Notifications
You must be signed in to change notification settings - Fork 0
/
comic.css
57 lines (51 loc) · 850 Bytes
/
comic.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
html{
width:100%;
height:100%;
}
body{
display: flex;
justify-content: center;
padding: 0px;
border:0px;
margin:0px;
width:100%;
height:100%;
overflow: hidden;
}
#imageDiv{
display: flex;
justify-content: center;
padding:0px;
border:0px;
margin:auto;
width:99.5%;
height:99.5%;
}
canvas {
margin: auto;
width: fit-content;
height: fit-content;
}
#infoText {
text-align: center;
word-wrap: break-word;
margin: auto;
width: 90%;
}
#infoContainer {
position: fixed;
width: 300px;
height: 170px;
bottom: 0px;
right: 0px;
display: flex;
background-color: rgb(255, 255, 255);
border-color: rgb(53, 48, 48);
border: 5px;
border-style: outset;
}
#pageInfoText {
position: fixed;
bottom: 0px;
left: 0px;
}