-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathabout.module.css
More file actions
105 lines (89 loc) · 1.86 KB
/
about.module.css
File metadata and controls
105 lines (89 loc) · 1.86 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
.root {
& > h1 {
flex-basis: var(--col8);
}
& > h3 {
flex-basis: var(--col8);
padding-right: var(--push4);
}
}
.content {
flex-basis: var(--col8);
padding-left: var(--push1);
padding-right: var(--push2);
margin-bottom: var(--vertical-margin-large);
& h2 {
font-size: var(--text-large);
margin-top: var(--vertical-margin-large);
margin-bottom: 1rem;
}
& h3 {
margin-top: var(--vertical-margin-large);
}
& ul {
padding-bottom: 20px;
font-family: "Vollkorn", serif;
font-size: var(--text-medium);
line-height: 1.6em;
list-style-type: none;
& li {
font-family: inherit;
margin-bottom: 10px;
padding-left: 1em;
}
& li:before {
content: "• ";
float: left;
font-family: var(--font);
font-weight: 700;
color: var(--processing-blue-dark);
display: inline-block;
width: 1em;
margin-left: -1em;
}
}
& p {
font-family: "Vollkorn", serif;
font-size: var(--text-medium);
line-height: 1.6em;
& > pre {
font-family: var(--font-mono);
font-feature-settings: var(--font-mono-settings);
font-size: var(--text-regular);
font-style: normal;
}
& code {
margin-bottom: 0;
font-size: var(--text-regular);
}
& a {
color: var(--processing-blue-dark);
text-decoration: underline;
&:hover {
color: var(--processing-blue-mid);
}
&:active {
color: var(--processing-blue-light);
}
}
}
& h4 {
border-left: solid var(--lightgray) 6px;
padding-left: 10px;
}
}
@media (--small) {
.root {
& > h1 {
padding-top: var(--vertical-margin-large);
}
& > h3 {
padding-right: 0;
flex-basis: var(--col8);
}
}
.content {
padding-left: var(--gutter);
padding-right: var(--gutter);
}
}