-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (53 loc) · 866 Bytes
/
style.css
File metadata and controls
62 lines (53 loc) · 866 Bytes
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
html {
color: white;
background-color: #014421;
width: 300px;
height: 300px;
padding: 0;
border-style: solid;
border-width: 5px;
border-color: #013220;
}
button {
background-color: #355E3B;
display: inline-block;
border: none;
padding: 1.25% 2.5%;
color: white;
font-weight: bold;
}
button:hover {
background-color: #8A9A5B;
cursor: pointer;
}
button:disabled {
opacity: 0.6;
cursor: not-allowed;
}
input {
background-color: #8A9A5B;
color: black;
border: none;
width: 70%;
height: 15%;
margin: 1%;
}
::placeholder {
color: black;
}
#timerPanel {
text-align: center;
}
#timer {
font-size: 500%;
padding: 0;
margin: 0;
margin-bottom: 5%;
}
#configPanel {
text-align: center;
display: block;
}
#apply {
display: inline-block;
}