summaryrefslogtreecommitdiff
path: root/website/static/base/css/index.css
blob: 28db440e1b1b2feacde4f66c4f2a4baa996a78c5 (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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
/*
    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.
*/

h2 {
    color: #4D4D4D;
    font-size: 2.5em;
    margin: 50px 0px;
}

h3 {
    color: #4D4D4D;
    font-size: 2.0em;
}

.info-box {
    display: inline-block;
    margin: 0px 20px 20px 20px;
}


/* FEATURED BOX */
#featured-box {
    background-color: #3D3D3D;
    background-image: url("../img/checkerboard-bg.png"),
                      url("../img/featured-box-bg.png");
    background-position: top, bottom;
    background-repeat: repeat, repeat-x;
}

.featured-content {
    color: white;
    font-size: 17px;
    padding: 40px 20px;
}

.featured-heading {
    color: white;
    font-size: 24px;
    margin: 0px;
}

.featured-content > ul {
    list-style-image: url("../img/white-star.png");
    padding-left: 20px;
}

.featured-content li {
    padding: 10px 0px;
}

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

.action, .action:link, .action:visited {
    border-color: black;
    border-radius: 6px;
    border-style: solid;
    border-width: thin;
    color: white;
    display: inline-block;
    font-size: 14px;
    height: 47px;
    line-height: 47px;
    text-align: center;
    vertical-align: middle;
    width: 196px;
}

.action:active, .action:focus, .action:hover {
    box-shadow: 0 0 4px gray;
}

.download {
    background-color: #60B0DB;
    background-image: url("../img/download-btn-bg.png");
    background-position: bottom;
    background-repeat: repeat-x;
    margin-right: 20px;
}

.contribute {
    background-color: #B060DB;
    background-image: url("../img/contribute-btn-bg.png");
    background-position: bottom;
    background-repeat: repeat-x;
}
/* END FEATURED BOX */


/* DISCOVERY BOX */
#discovery-box {
    background-color: #333;
    background-image: url("../img/discovery-box-shadow-bg.png"),
                      url("../img/discovery-box-bg.png");
    background-repeat: repeat-x, repeat;
    color: #E6E6E6;
    padding: 40px 10px;
    text-align: center;
}

#discovery-box h2 {
    color: #E6E6E6;
}

.video-preview {
    border-color: black;
    border-style: solid;
    border-width: thin;
    box-shadow: 0 0 4px black;
    width: 100%;
}

#screens-box {
    padding: 30px 0px;
}

#screens-box a {
    border-style: none;
    color: white;
    display: inline-block;
}

.screenshot-thumb {
    border-color: black;
    border-radius: 5px;
    border-style: solid;
    border-width: thin;
    box-shadow: 0 0 4px gray;
    display: inline-block;
    margin: 10px;
    width: 300px;
}

.screenshot-thumb:hover {
    box-shadow: 0 0 4px black;
}
/* END DISCOVERY BOX */


/* NEWS BOX */
#news-box {
    padding: 0px 10px;
    text-align: center;
}

.news-entry:link, .news-entry:visited {
    color: inherit;
    display: block;
    padding: 10px 15px;
    text-align: left;
}

.news-entry:active, .news-entry:focus, .news-entry:hover {
    background-color: #F4BB15;
}

.news-date {
    color: #4D4D4D;
    font-size: 0.9em;
}

.news-summary {
    color: #4D4D4D;
}
/* END NEWS BOX */


/* CONTACT BOX */
#contact-box {
    background-color: #F5F5F5;
    background-image: url("../img/h-separator.png"),
                      url("../img/h-separator.png");
    background-position: top center, bottom center;
    background-repeat: no-repeat;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #4D4D4D;
    padding: 10px;
    text-align: center;
}
/* CONTACT BOX */


@media screen and (min-width: 1024px) {
    .info-box {
        vertical-align: top;
        width: 420px;
    }


    /* FEATURED BOX */
    #featured-box {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        height: 445px;
        padding-top: 40px;
    }

    .featured-content {
        margin: auto;
        width: 960px;
    }
    
    .featured-actions {
        text-align: right;
    }
    /* END FEATURED BOX */


    /* NEWS BOX */
    #news-box {
        text-align: center;
        padding: 0px 10px;
    }

    .news-entry:link, .news-entry:visited {
        background-color: transparent;
        border-color: white;
        border-style: solid;
        display: inline-block;
        margin: 10px 0px 15px 0px;
        vertical-align: top;
        width: 270px;
    }

    .news-entry:active, .news-entry:focus, .news-entry:hover {
        border-color: #F4BB15;
    }
    /* END NEWS BOX */
}