-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (95 loc) · 1.97 KB
/
style.css
File metadata and controls
109 lines (95 loc) · 1.97 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
:root {
--base: #b2c0e0;
--background-or-light: #fbfdff;
--text-or-dark: #21224A;
/* --text-or-dark: #493c52; */
/* --text-or-dark: #171D47; */
--hilite-text: #111A52;
--visited: #4E5980;
--non-text: #5E7297;
--action: #0159B2;
--bright: #fee557;
--soft: #fef4ac;
--body-font: 1rem;
--h1: 11vw;
--h1-height: 12.4vw;
--h2: 3rem;
--h3: 2rem;
}
html {
background-color: var(--base);
}
* {
box-sizing: border-box;
word-wrap: break-word;
word-break: break-word;
}
body {
/* min-width: 200px; */
font-family: 'Noto Sans', Arial, sans-serif;
line-height: 1.5;
font-size: 1rem;
text-decoration-skip-ink: none;
background-color: var(--background-or-light);
/* margin: 1rem; */
/* border: 2px solid var(--non-text); */
color: var(--text-or-dark);
padding: 1rem;
/* outline: 10rem solid var(--base); */
/* box-shadow: inset 20rem var(--base); */
}
@media (min-width: 650px) {
h1 {
text-align: center;
margin: 0;
padding: 0;
width: 100%;
font-size: var(--h1);
letter-spacing: 0.07em;
text-transform: uppercase;
font-weight: 700;
color: var(--background-or-light);
background-color: var(--text-or-dark);
height: var(--h1-height);
}
main {
width: 70vw;
margin: auto;
display: flex;
flex-wrap: wrap;
}
nav ul {
list-style-position: inside;
text-align: center;
}
nav li {
display: inline-block;
margin-right: 2rem;
list-style-type: none;
}
section.columns {
display: flex;
justify-content: space-between;
}
section.columns > div {
max-width: 45%;
}
img {
width: 100%;
}
section.hilite > div {
padding-top: 0.75rem;
}
section.hilite h3 {
margin: 0;
color: var(--hilite-text);
}
p.hilite {
position: relative;
max-width: 65%;
left: -2rem;
padding: 0.75rem;
padding-left: 2rem;
background-color: var(--soft);
}
}