-
Notifications
You must be signed in to change notification settings - Fork 3
/
styles.css
84 lines (66 loc) · 855 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
body {
margin: 0 auto;
padding: 1em;
max-width: 1024px;
}
header {
margin-bottom: 3em;
}
header > p {
margin-top: -1.3em;
font-size: 1.25em;
}
aside {
background: #d9edf7;
padding: 0.5em 2em;
border-radius: 3px;
color: #000000;
}
form {
margin-top: 2em;
margin-bottom: 1em;
}
form input {
margin: 1em 0;
}
h2 {
margin-top: 4em;
}
h3 {
margin-top: 3em;
}
.warning {
background: #fcf8e3;
}
.error {
padding: 1em;
border-radius: 3px;
background: #f2dede;
}
.form {
margin: 1em 0 2em 2em;
}
dt {
font-style: italic;
margin-top: 1em;
}
.remote {
max-width: 20em;
text-align: center;
}
.off {
background: rgb(202, 60, 60);
color: white;
}
.remote button {
width: 90%;
}
.secondary {
background: rgb(66, 184, 221);
color: white;
font-size: 75%;
width: 90%;
}
hr {
margin: 1em 0;
}