-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
89 lines (75 loc) · 1.29 KB
/
styles.css
File metadata and controls
89 lines (75 loc) · 1.29 KB
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
:root {
--base-light-color: rgb(218, 222, 229);
--base-dark-color: rgb(18, 24, 39);
}
body {
height: 50vh;
background-color: var(--base-dark-color);
color: var(--base-light-color);
font-family: Roboto, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
/* justify-content: center; */
}
.align-center {
display: flex;
flex-direction: column;
align-items: center;
}
.animate__animated.animate__bounce {
--animate-duration: 2s;
}
.header {
animation: fadeInDown 0.8s ease-out;
}
.main-timer {
animation: fadeInUp 0.8s ease-out;
}
button {
color: black;
border: none;
width: 150px;
border-radius: 10px;
margin-top: 30px;
padding: 10px 20px;
font-size: 18px;
cursor: pointer;
}
h3 {
text-align: center;
color: rgb(186, 186, 186);
margin-bottom: 50px;
}
#startBtn {
background-color: rgb(78, 211, 147);
}
#stopBtn {
background-color: rgb(200, 49, 49);
}
#resetBtn {
background-color: rgb(190, 190, 190);
}
#results {
text-align: center;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}