-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
82 lines (61 loc) · 1.09 KB
/
main.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
main {
margin: 0 auto;
text-align: center;
background-color: #F8F8F8;
height: 100vh;
}
iframe {
margin: 1em auto;
border-top: .5in solid white;
border-bottom: .5in solid white;
background-color: white;
display: block;
text-align: center;
}
body {
background-color: #aaa;
}
#page-controls {
display: inline-block;
}
.button, .status, span.download {
font: bold 11px Arial;
text-decoration: none;
background-color: #EEEEEE;
color: #333333;
padding: 2px 6px 2px 6px;
border-top: 1px solid #CCCCCC;
border-right: 1px solid #333333;
border-bottom: 1px solid #333333;
border-left: 1px solid #CCCCCC;
}
#wrapper input, #wrapper span, #wrapper .page-controls {
-webkit-flex: 1;
-webkit-align-items: center;
}
#page-controls input.work-offline {
display: none;
}
.iframe-container {
width: 100%;
height: 80vh;
}
#pub {
width: 600px;
height: 100%;
object-fit: cover;
}
@media screen and (max-device-width: 480px) {
.iframe-container {
width: 100%;
height: 80vh;
}
#pub {
width: 100%;
height: 100%;
object-fit: cover;
}
}
form {
display: inline;
}