-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathstyle.css
More file actions
34 lines (34 loc) · 549 Bytes
/
style.css
File metadata and controls
34 lines (34 loc) · 549 Bytes
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
@media (prefers-color-scheme: dark) {
body, button {
background-color: #1B1B1B;
color: #E7E8EB;
}
a {
color: #3387CC;
}
}
@media (prefers-color-scheme: light) {
body, button {
background-color: white;
color: black;
}
}
#description {
margin: 20px;
}
#copy-button {
margin: 20px;
}
table {
border: 2px solid black;
margin: 20px;
width: 80%;
}
th, td {
border-top: 1px solid black;
border-right: 1px solid black;
margin: 0px;
}
a {
border:2px solid red;
}