-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
59 lines (48 loc) · 856 Bytes
/
main.css
File metadata and controls
59 lines (48 loc) · 856 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
body, html {
background-color: #FAF9F6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 1.5em;
background-color: #FAF9F6;
}
.menu {
font-family: 'Noto Sans', sans-serif;
font-size: 14px;
}
.menu-group-heading {
margin: 0;
padding-bottom: 1em;
padding-top: 1em;
border-bottom: 3px solid #ccc;
}
.menu-group {
display: grid;
grid-template-columns: 1fr;
gap: 1em;
padding: 1.5em 0;
}
.menu-item{
display: flex;
}
.menu-item-text {
flex-grow: 1;
margin-right: 2em;
}
.menu-item-name {
color:#105410
}
.menu-item-heading {
margin-bottom: .6em;
display: flex;
justify-content: space-between;
}
@media screen and (min-width: 992px) {
.menu {
font-size: 18px;
}
.menu-group {
grid-template-columns: repeat(2, 1fr);
}
}