-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
91 lines (73 loc) · 1.31 KB
/
main.css
File metadata and controls
91 lines (73 loc) · 1.31 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
padding: 50px;
font-family: 'Commissioner', sans-serif;
font-size: 1rem;
background-color: #000;
color: whitesmoke;
}
main {
max-width: 350px;
}
h1 {
color: rgb(207, 207, 207);
font-size: 1.8rem;
}
p, span {
color: rgb(207, 207, 207);
padding-top: 10px;
line-height: 1.5rem;
}
.highlight {
/* color: rgb(195, 161, 145); */
color: #fff;
}
/* Links */
a {
color: rgb(91, 139, 221);
text-decoration-color: rgb(91, 139, 221, 0.5);
}
a:hover, a:focus {
color: rgb(145, 182, 246);
text-decoration-color: rgb(145, 182, 246, 0.5);
}
a:active {
color: rgb(245, 245, 245);
text-decoration-color: rgb(245, 245, 245, 0.5);
}
ul.links {
list-style-type: none;
display: inline-block;
margin: 0;
padding: 0;
}
li {
/* float: left; */
display: inline;
}
.links li {
/* display: inline-block; */
display: inline-block;
margin-right: 8px;
}
@media (prefers-color-scheme: light) {
.adaptive-theme {
background-color: #ffffff;
color: #000;
}
.adaptive-theme p {
color: #000;
}
.faded {
color: rgba(0, 0, 0, 0.5)
}
}
@media (prefers-color-scheme: dark) {
.faded {
color: rgba(255, 255, 255, 0.5)
}
}