-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (63 loc) · 805 Bytes
/
style.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
body
{
background-color: rgb(70,79,105);
color: white;
font-family: Geneva, Arial, Helvetica, sans-serif;
}
ul
{
list-style-type: none;
margin: 0px 0px;
padding: 0;
clear: both;
}
ul#markers li
{
margin: 0px 10px;
text-align: center;
}
ul:nth-child(2) li
{
margin-top: 0px;
}
li
{
display: block;
width: 30px;
height: 30px;
background-color: rgb(122,122,122);
float: left;
margin: 20px 10px;
cursor: pointer;
}
li:hover
{
background-color: rgb(138,138,138);
}
li.label
{
background-color: inherit;
}
li.note
{
background-color: rgb(232, 252, 98);
}
li.active
{
background-color: rgb(43, 186, 71);
}
section#controls
{
clear: both;
padding: 10px 0px;
}
section#controls input
{
font-size: 2em;
width: 100px;
margin-right: 20px;
}
input.error
{
background-color: red;
}