-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (68 loc) · 1.31 KB
/
style.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
[data-theme="dark"] {
background-color: #111 !important;
color: #eee;
}
[data-theme="dark"] .bg-light {
background-color: #333 !important;
}
[data-theme="dark"] .bg-white {
background-color: #000 !important;
}
[data-theme="dark"] .bg-black {
background-color: #eee !important;
}
#ReadResult {
display: block;
}
.iframe {
visibility: "hidden";
overflow-y: auto;
max-height: 50vh;
max-width: 70vw;
}
#download {
visibility: "hidden"
}
html,
body {
height: 100vh;
max-height: 100vh;
transition: all 200ms linear;
background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat-back.svg');
background-position: center;
background-repeat: repeat;
background-size: 7%;
background-color: #fff;
}
.flex-container {
height: 100%;
display: flex;
flex-direction: column;
/* justify-content: space-between; */
align-items: center;
}
.header,
.footer,
.main {
padding: 1em;
}
article {
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.footer {
align-self: stretch;
text-align: center;
}
.header {
/* background-color: #cff; */
align-self: stretch;
display: flex;
justify-content: space-between;
}
.main {
flex: 1 0 auto;
}