This repository has been archived by the owner on May 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
154 lines (127 loc) · 2.38 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
html {
scroll-behavior: smooth;
}
.row {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}
.center,
#loading {
text-align: center;
}
#loading .spinner {
position: relative;
display: inline-block;
width: 20px;
vertical-align: middle;
}
@keyframes spinner {
to {
transform: rotate(360deg);
}
}
.spinner:before {
content: '';
box-sizing: border-box;
position: absolute;
top: 50%;
left: 50%;
width: 20px;
height: 20px;
margin-top: -10px;
margin-left: -10px;
border-radius: 50%;
border-top: 2px solid #07d;
border-right: 2px solid transparent;
animation: spinner .6s linear infinite;
}
.dnone {
display: none;
}
table tr th,
table tr td {
text-align: center;
vertical-align: middle;
}
table tr th:first-child,
table tr td:first-child {
text-align: left;
}
table tr th:last-child,
table tr td:last-child {
text-align: right;
}
#presets-body td:last-child a,
#mods-title a {
cursor: pointer;
font-size: 0.7rem;
}
#presets-body td button {
margin: 0 0 0 10px;
padding: 4px 8px;
font-size: 0.6rem;
font-weight: bold;
}
.show_btn,
tbody tr:nth-child(2n) .show_btn {
background-color: orangered;
}
.select_btn,
tbody tr:nth-child(2n) .select_btn {
background-color: olivedrab;
}
#mods-title {
font-weight: bold;
text-align: left;
}
#dialog-header button {
padding: 7px;
margin: 0;
}
#dialog-header button:focus,
#dialog-content input[type=checkbox]:focus {
border: 0;
box-shadow: none;
}
#dialog-header {
padding: 10px 20px;
}
#dialog-content {
display: flex;
flex-flow: column;
align-items: flex-start;
padding: 10px 20px;
margin: -10px -30px -10px;
}
#dialog-content ol {
margin: 0 5px;
}
#dialog-content ol li input[type=checkbox] + a {
opacity: .6;
font-style: italic;
}
#dialog-content ol li input[type=checkbox]:checked + a {
opacity: 1;
font-style: normal;
}
dialog + .backdrop {
background: rgba(0,0,0,.61);
-webkit-backdrop-filter: blur(4px);
backdrop-filter: blur(4px);
}
summary:focus, summary:hover {
text-decoration: none;
}
summary:focus span, summary:hover span {
text-decoration: underline;
}
footer sup {
font-size: 0.6rem;
}
@media (prefers-color-scheme: dark) {
footer a.github {
fill: #c6cbd1;
}
}