aboutsummaryrefslogtreecommitdiff
path: root/public/stylesheets/main.css
blob: a9d3a71b2f06505404b7469d83c55c8e813e99a9 (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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128

p {
    line-height: 1.6em;
}

.page {
    color: #526066;
    padding: 0 1em;
    max-width: 1200px;
    margin: 0 auto;
}

.full-width {
    width: 100%;
}

.l-box {
    padding: .75em;
}

/***** DISCLAIMER BAR *****/

.disclaimer-bar {
    color: white;
    text-align: center;
    font-size: 1.25em;
    padding: .5em;
}

/***** LOGO *****/

.logo h1,
.logo h2 {
    display: inline-block;
}

.logo h1 {
    font-size: 4em;
    padding-right: .5em;
    border-right: 3px solid #819096;
}

.logo h2 {
    padding-left: .5em;
}

.logo a {
    text-decoration: inherit;
    color: inherit;
}

/***** ACCOUNT-INFO *****/

@media screen and (min-width: 64em) {
    .account-info {
        margin: 4em 0;
    }

    .account-info > * {
        float: right;
    }

    .account-info .pure-button {
        margin: .3em;
    }

    .account-info .pure-button:first-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 64em) {
    .account-info {
        margin: 1em 0;
    }

    .account-info .pure-button {
        box-sizing: border-box;
        width: 100%;
        margin: .3em 0;
    }
}

/***** FOOTER *****/

footer {
    border-top: 1px solid #819096;
    margin-top: 1em;
    padding-top: 1em;
    margin-bottom: 1em;
}

@media screen and (min-width: 64em) {
    footer .footer-links {
        float: right;
    }
}

@media screen and (max-width: 64em) {
    footer > * {
        display: block;
    }
}

/***** ACTION BUTTONS *****/

.action-buttons * {
    box-sizing: border-box;
    color: white;
}

.action-buttons a {
    width: 100%;
    border-radius: 0;
    padding: 1.25em;
}

.action-buttons a > * {
    display: block;
}

.action-buttons a > span {
    margin-top: 1em;

    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
}