-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (80 loc) · 1.36 KB
/
style.css
File metadata and controls
92 lines (80 loc) · 1.36 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
92
html {
background: repeating-conic-gradient(#101010 0% 25%, #181818 0% 50%) 50% / 2rem 2rem;
}
body {
max-width: 64rem;
margin: 0 auto;
padding: 1rem;
font-family: sans-serif;
color: #d0d0d0;
background: #202020;
transition: color 0.2s, background 0.2s;
}
header {
display: flex;
align-items: baseline;
gap: 1rem;
}
h1, h2, h3, h4, h5, h6 {
font-family: monospace;
font-weight: 100;
} h1 {
font-size: 2rem;
} h2 {
font-size: 1.5rem;
} h3 {
font-size: 1rem;
}
table {
width: max-content;
border-collapse: collapse;
} td {
padding-bottom: 0.25rem;
vertical-align: top;
} td:first-child {
width: 8rem;
padding-right: 1rem;
}
main {
display: flex;
flex-direction: column;
}
a {
color: #a0a0f0;
transition: color 0.2s;
text-decoration: underline;
text-decoration-color: transparent;
} a:hover, a:focus {
text-decoration-color: currentColor;
} a::before {
content: '↗ ';
}
.cards {
display: flex;
width: 100%;
flex-wrap: wrap;
gap: 1rem;
}
article {
width: calc(50% - 1rem);
}
@media (max-width: 80vh) {
article {
width: calc(100% - 1rem);
}
}
article > header {
display: flex;
align-items: flex-end;
padding: 0 1rem;
height: 8rem;
background: #0000f040;
}
article > main {
background: #404040;
transition: background 0.2s;
padding: 1rem;
}
body.light article > main {
background: #e0e0e0;
}