-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (34 loc) · 754 Bytes
/
style.css
File metadata and controls
38 lines (34 loc) · 754 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
* { font-family: sans-serif; }
a, a:visited { color: teal; }
h2, h3, h4, h5 { margin: 0; }
h3 { text-decoration: underline; }
ul { margin-top: 7px; }
#head {
margin-bottom: 10px;
text-align: center;
padding: 5px 5px;
}
#body
{ display: grid; }
.h2-group {
padding: 12px 16px;
margin: 6px 6px;
background-color: #f7f7f7;
}
@media screen and (min-width: 810px) {
#group1 { order: 2; }
#group2 { order: 1; }
#group3 { order: 4; }
#group4 { order: 3; }
#group5 { order: 5; }
#group2, #group3, #group4
{ grid-row-end: span 2; }
#mid
{ order: 0; }
#body {
max-width: 1060px;
margin: auto;
grid-template-columns: 6fr 3fr;
grid-template-rows: auto 1fr;
}
}