summaryrefslogtreecommitdiff
path: root/stylesheets/contact.css
blob: 75bb4584dce0f0f474d6177659c4bae9777e4aa4 (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
53
54
55
main h1 {
    color: #377d1f;
}

@media (min-width: 40em) {
    main {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    main h1 {
        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;
    }
}