-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
94 lines (94 loc) · 1.57 KB
/
index.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
85
86
87
88
89
90
91
92
93
94
body {
background-color: #eff3f6;
}
.container {
width: 655px;
margin: auto;
margin-bottom: 40px;
background-color: #8472a1;
}
nav {
text-align: center;
padding-top: 40px;
margin-bottom: 40px;
}
.stopwatchContainer {
border: 5px solid greenyellow;
width: 400px;
height: 400px;
border-radius: 50%;
margin: auto;
box-shadow: 20px 20px 20px #000, inset 20px 20px 20px #000;
}
#hr {
border-top: 1px solid none;
margin: 40px 0 40px 0;
}
.button {
margin: 5px;
background-color: #336799;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
text-align: center;
border-radius: 5px;
box-shadow: 3px 3px;
}
#startButton {
background-color: #cd5c5c;
}
#startButton:active {
position: relative;
top: 2px;
left: 2px;
}
#pauseButton:active {
position: relative;
top: 2px;
left: 2px;
}
#resumeButton:active {
position: relative;
top: 2px;
left: 2px;
}
#resetButton:active {
position: relative;
top: 2px;
left: 2px;
}
#startButton:hover {
background-color: #ba1313;
}
#resumeButton {
background-color: #79c942;
}
#resumeButton:hover {
background-color: rgb(41, 70, 22);
}
#resetButton {
background-color: #d81ca4;
}
#resetButton:hover {
background-color: #610e49;
}
.button:hover {
background-color: #113353;
}
.button:active {
background-color: #1d3c58;
}
.button:focus-visible {
outline: 14px dashed hotpink;
}
#stopwatch {
margin-top: 130px;
text-align: center;
color: #79c942;
font-size: 80px;
text-shadow: 2px 2px 4px #000000;
}