forked from chestnutzero/pin-planner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (56 loc) · 1.11 KB
/
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
body {
background-color:#d9d9d9;
font-family: 'Roboto', sans-serif;
text-align: center;
}
canvas {
/* box-shadow: 1px 1px 4px; */
background-color:#2b261d;
/* background-color: #ac7e2d; */
}
button, input, textarea {
border-width: 5px;
border-radius: 0;
border-style: solid;
background: none;
margin: .5em;
font-size: 1em;
}
button {
height: 2.5em;
}
button:disabled {
background: none;
background-color: #0000;
border-style: dotted;
}
button:hover:not(:disabled) {
background-color: #e79b18;
cursor: pointer;
}
div#point-options {
border-width: 5px;
border-style: solid;
padding-bottom: 10px;
padding-top: 10px;
display: none;
}
div#point-options > input {
max-width: 100px;
}
button#simulate-chamber:not(:disabled), button#simulate-all-chambers {
background-color:rgb(130, 226, 130);
}
button#delete-chamber:not(:disabled) {
background-color:rgb(249, 122, 122);
}
button#delete-pin:not(:disabled) {
background-color:rgb(249, 122, 122);
}
button#reset:not(:disabled) {
background-color:rgb(249, 122, 122);
}
footer {
padding-top: 5%;
font-size: .8em;
}