summaryrefslogtreecommitdiff
path: root/website/static/base/css/base.css
blob: df35c15dcbfc3ededb54b43fb1c92a76e196c93c (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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/*
    Public domain 2015 Luis Felipe López Acevedo. All rights waived.
    <felipe.lopez@openmailbox.org>

    NOTE  The default style is targeted at screens with a width less than
          1024 pixels.
*/

@import url("message-box.css");
@import url("header-box.css");
@import url("footer-box.css");


/* NATIVE ELEMENTS */
a:link, a:visited {
    border-color: #F4BB15;
    border-style: none none solid none;
    border-width: thin;
    color: #1A1A1A;
    text-decoration: none;
}

a:active, a:focus, a:hover {
    border-color: #F49B15;
    border-style: none none dashed none;
    color: black;
}

body {
    background-color: #333;
    font-family: sans-serif;
    font-size: 16px;
    margin: 0px;
}

h1:hover > a.anchor-link,
h2:hover > a.anchor-link,
h3:hover > a.anchor-link,
h4:hover > a.anchor-link {
    visibility: visible;
}
/* END NATIVE ELEMENTS */


/* IDs */
#content-box {
    background-color: white;
}
/* END IDs */


/* CLASSES */
a.anchor-link {
    visibility: hidden;
    padding: 0 0.5em;
}

a.button:link, a.button:visited {
    background-position: bottom;
    background-repeat: repeat-x;
    border-style: none;
    border-radius: 5px;
    color: white;
    display: block;
    font-size: 14px;
    padding: 8px 15px;
    text-align: center;
}

a.btn-blue {
    background-color: #63AFD8;
    background-image: url("../img/blue-btn-bg.png");
}

a.btn-red {
    background-color: #D86F63;
    background-image: url("../img/red-btn-bg.png");
}

a.hlink-yellow:link, a.hlink-yellow:visited {
    border-style: none;
    color: #F4BB15;
}

a.hlink-yellow:active, a.hlink-yellow:focus, a.hlink-yellow:hover {
    color: #F49B15;
}

a.hlink-more-dark, a.hlink-more-light {
    background-image: url("../img/more-info-bg.png");
    background-position: 100% 50%;
    background-repeat: no-repeat;
    border-style: none;
    display: inline-block;
    font-size: 1.2em;
    line-height: 20px;
    margin: 20px 0px;
    padding-right: 30px;
}

a.hlink-more-dark, a.hlink-more-dark:link, a.hlink-more-dark:visited {
    color: #333;
}

a.hlink-more-dark:active, a.hlink-more-dark:focus, a.hlink-more-dark:hover {
    color: black;
}

a.hlink-more-light, a.hlink-more-light:link, a.hlink-more-light:visited {
    color: #E6E6E6;
}

a.hlink-more-light:active, a.hlink-more-light:focus, a.hlink-more-light:hover {
    text-shadow: 2px 2px black;
}

a.hlink-yellow-boxed, a.hlink-yellow-boxed:link, a.hlink-yellow-boxed:visited {
    background-color: #F4BB15;
    border-style: none;
    color: black;
    display: inline-block;
    font-size: 1.2em;
    line-height: 20px;
    margin: 10px;
    padding: 10px 15px;
}

a.hlink-yellow-boxed:active, a.hlink-yellow-boxed:focus,
a.hlink-yellow-boxed:hover {
    box-shadow: 2px 2px black;
}

.h-separator {
    display: block;
    margin: auto;
    padding: 20px 0px;
    width: 100%;
}

pre {
    background-color: #F2EFE4;
    border-style: solid;
    border-color: #D4CBB6;
    border-radius: .3em;
    border-width: thin;
    font-size: 85%;
    overflow: auto;
    padding: 3em;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}
/* END CLASSES */


@media screen and (min-width: 1024px) {
    a.button:link, a.button:visited {
        display: inline-block;
    }

    .h-separator {
        width: auto;
    }


    /* GENERIC CONTAINERS */
    .summary-box {
        color: #4D4D4D;
        display: inline-block;
        font-size: 0.9em;
        margin: 5px;
        padding: 10px;
        text-align: left;
        vertical-align: top;
        width: 280px;
    }
    /* END GENERIC CONTAINERS */
}