-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexperiments.css
More file actions
64 lines (54 loc) · 1012 Bytes
/
experiments.css
File metadata and controls
64 lines (54 loc) · 1012 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
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
body {
font-family: Georgia, sans-serif;
color: #333;
background-color: #f5f5f5;
margin: 0;
padding: 0;
}
h1 {
background: linear-gradient(to right, #fff, #76c1ff, #f5a9b8, #fff);
color: #000;
font-family: 'JetBrains Mono', monospace;
font-size: 2rem;
margin: 20px;
mask: linear-gradient(to right, #000 70%, transparent 80%);
padding-left: .75rem;
text-transform: lowercase;
--webkit-text-fill-color: transparent;
}
p {
font-family: 'JetBrains Mono', monospace;
line-height: 1.5;
margin: 1.3rem;
}
a {
color: #0070c9;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul {
list-style: lower-greek;
margin: 0;
}
ul li {
margin: 10px 0;
}
@media (prefers-color-scheme: dark) {
body {
color: #eee;
background-color: #222;
}
a {
color: #76c1ff;
}
}
@media (max-width: 600px) {
h1 {
font-size: 1.5rem;
}
p {
font-size: 1rem;
}
}