forked from SamsungInternet/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
70 lines (70 loc) · 996 Bytes
/
styles.css
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
body {
font-family: Helvetica, Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0 10px;
background: #f4f2ff;
}
@media (min-width: 500px) {
body {
padding: 0 6%;
}
}
@media (min-width: 800px) {
body {
padding: 0 10%;
}
}
h1 {
font-weight: normal;
font-style: italic;
}
h2 {
font-size: 1.3em;
margin-bottom: 1.5em;
}
a,
a:hover,
a:visited {
color: #7f4fff;
text-decoration: none;
}
p {
text-align: justify;
}
#donate {
display: none;
}
#donate-button {
font-size: 1.2em;
padding: 8px 12px;
margin: 1em 0;
border: 0;
border-radius: 5px;
background: #7f4fff;
color: white;
cursor: pointer;
}
#success,
#error {
display: none;
font-weight: bold;
margin: 1.5em 0;
}
#unsupported {
display: none;
font-style: italic;
}
#unsupported .warning {
font-weight: bold;
color: #f47953;
margin-bottom: 0.5em;
}
#unsupported .description {
margin: 0 0 2em 0;
}
footer {
margin-top: 2em;
font-size: 0.95em;
color: #666;
}