screen.css
753 Bytes
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
body {
background-color: #dadada; }
.content {
background: #fff;
padding: 40px;
margin: 40px auto;
width: 880px;
-moz-border-radius: 24px;
-webkit-border-radius: 24px; }
/* flash color */
#flash_success {
background: seagreen; }
#flash_failure {
color: beige;
background: firebrick; }
#flash_notice {
color: snow;
background: dimgray; }
/* flashes spacing */
#flash {
margin-bottom: 0.6em; }
#flash_notice, #flash_success, #flash_failure, #errorExplanation ul li {
padding: 0.6em; }
/* flash scale */
#flash_notice, #flash_success, #flash_failure, #errorExplanation ul li {
font-size: 1.6em; }
/* flash weighting */
#flash_notice, #flash_success, #flash_failure, #errorExplanation ul li {
font-weight: bold; }