blob: 0049c3118bdb15908218b3a89d36299c2160b84d (
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
|
/*
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.
*/
.message-box {
background-image: url("../img/msg-info-bg.png");
background-position: -5px -5px;
background-repeat: no-repeat;
color: white;
font-size: 12px;
padding: 20px;
}
.message-box > a:link, .message-box > a:visited {
border-color: white;
border-style: none none dotted none;
border-width: thin;
color: white;
text-decoration: none;
}
.msg-info {
background-color: #5FBCD3;
}
.donate-info {
background-color: #FFFFFF;
color: #000;
}
.msg-warning {
background-color: #D35F5F;
}
.donate-button {
background-color: #F4BB15;
padding: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.donate-button:hover {
background-color: #F7CB50;
}
.donate-info > a:link, .donate-info > a:visited {
color: #000;
font-weight: bold;
border: none;
}
.msg-label {
font-weight: bold;
padding-right: 10px;
}
|