-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
style.css
184 lines (154 loc) · 2.65 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
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
body {
background-color: #FFFFFF;
color: #000000;
}
h1,
h2 {
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
table {
border-collapse: collapse;
margin: 25px 0;
font-size: 0.9em;
font-family: sans-serif;
min-width: 400px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
width: 100%;
}
table thead tr {
text-align: left;
}
table thead tr.legend,
table thead tr.legend th {
border: 1px solid #ffffff;
text-align: center;
}
table thead tr th.type {
background-color: #3498db;
color: #ffffff;
}
table thead tr th.legacy {
background-color: #f8f3ef;
color: #000000;
}
table thead tr th.current {
background-color: #62da2a;
color: #000000;
}
table thead tr th.modifier {
background-color: #e7ad09;
color: #ffffff;
}
table th,
table td {
padding: 12px 15px;
}
table tbody tr {
border-bottom: 1px solid #dddddd;
}
table tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}
table tbody tr:last-of-type {
border-bottom: 2px solid #3498db;
}
table tbody tr.active-row {
font-weight: bold;
color: #3498db;
}
.key {
margin: 5px;
}
.key mark {
font-size: 60px;
background-color: #ec10d1;
color: #ffffff;
border-radius: 3px;
padding: 5px;
}
.hint {
margin-top: 5px;
margin-left: 5px;
color: #767474;
}
.results {
margin: 10px 5px 0px 5px;
background-color: #ebebeb;
padding: 10px;
border-radius: 4px;
overflow: auto;
}
.note {
align-content: center;
display: flex;
justify-content: center;
}
.filter {
margin-left: 5px;
}
.v-false {
color: #ec8282;
}
.v-true {
color: green;
}
.git-ribbon {
position: absolute;
right: 0;
top: 0;
}
.input-here {
width: 80%;
height: 50px;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 1px solid #000000;
background-color: #ebebeb;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
}
.dialog-content {
height: 300px;
overflow: auto;
}
dialog::backdrop {
background: repeating-linear-gradient(
30deg,
rgba(24, 194, 236, 0.2),
rgba(24, 194, 236, 0.2) 1px,
rgba(24, 194, 236, 0.3) 1px,
rgba(24, 194, 236, 0.3) 20px
);
backdrop-filter: blur(1px)
}
button {
height: 25px;
background-color: #31a1fa;
color: #FFF;
border: 1px solid #008eff;
border-radius: 4px;
cursor: pointer;
}
button.close {
background-color: rgba(255, 30, 0, 0.897);
border: 1px solid #ff006f;
}
#scroll-top-wrapper {
position: fixed;
bottom: 20px;
right: 20px;
display: none;
}
#scroll-top-wrapper:hover {
cursor: pointer;
}
#scroll-top-button {
float: right;
background-color: #3498db;
padding: 10px;
border-radius: 100%;
font-size: 20px;
color: white;
}