forked from acmcsufoss/1st
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (58 loc) · 1.23 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
:root {
font-family: var(--ff-regular);
line-height: 1.5;
font-weight: 400;
color-scheme: light dark;
background-color: var(--color-primary);
color: var(--color-contrast);
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
--ff-regular: "Poppins", "sans-serif";
--ff-custom: "Fira Code", "monospace";
--color-primary: #ffffff;
--color-secondary: #e5e5e5;
--color-contrast: #393939;
--color-oss-team: #11d4b1;
--color-link: #0097a7;
@media (prefers-color-scheme: dark) {
--color-primary: #1a1a1a;
--color-secondary: #2d2d2d;
--color-contrast: #f5f5f5;
--color-link: #4dd0e1;
}
}
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
max-width: 58ch;
margin: 2rem auto;
padding: 1rem 2rem;
}
h1 {
vertical-align: center;
text-align: center;
}
p > b.oss {
color: var(--color-oss-team);
}
a {
color: var(--color-link);
}
ul li p img {
width: 1.5rem;
}
@media screen and (max-width: 30rem) {
h1 {
font-size: 1.5rem;
}
h2 {
font-size: 1.25rem;
}
}