blob: 964a1aecc707d2263342a446ef5c86bc025f6cf3 (
plain)
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
|
@media (min-width: 40em) {
main {
display: grid;
grid-template-columns: 1fr 1fr;
}
main h1 {
color: #377d1f;
margin-top: 0;
}
#contact-us {
border-right: solid 1px #e05a00;
/* Try to set this so that border does not go too far below photo. */
height: 28em;
}
#contact-us, #partners {
margin: 2em;
}
#contact-us dl:not(:first) {
margin-top: 0.2em;
}
#contact-us dl:not(:last) {
margin-bottom: 0.2em;
}
#contact-us dd {
margin-left: 0;
}
#contact-us dt, #contact-us dd {
display: inline;
}
#contact-us figure {
margin-left: 0;
}
#contact-us figure img {
max-width: 30em;
}
#partners ul {
display: flex;
align-items: center;
margin-top: 3em;
padding-left: 0;
}
#partners ul li {
list-style: none;
padding: 0 2em;
}
}
|