-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (62 loc) · 1.03 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
html {
font-family: sans-serif;
}
input:not([type="checkbox"]) {
font-size: inherit;
width: 100%;
}
.button, button {
font: inherit;
display: block;
width: 100%;
line-height: 2;
color: white;
background-image: linear-gradient(-45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 100%);
background-color: blue;
margin-top: 0.5em;
margin-bottom: 0.5em;
padding: 1em 0em;
text-align: center;
text-decoration: none;
border: none;
border-radius: 2px;
cursor: default;
}
.destructive {
background-color: red;
}
button:disabled {
background-image: none;
background-color: gray;
}
.disabled {
color: gray;
}
img {
max-width: 128px;
max-height: 128px;
}
#page-loading img {
position: absolute;
top: 50%;
left: 50%;
width: 512px;
height: 512px;
max-width: none;
max-height: none;
margin-left: -256px;
margin-top: -256px;
}
@media (max-width: 512px) {
#page-loading img {
width: 256px;
height: 256px;
margin-left: -128px;
margin-top: -128px;
}
}
@media (max-width: 256px) {
#page-loading img {
display: none;
}
}