-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (62 loc) · 1.24 KB
/
styles.css
File metadata and controls
73 lines (62 loc) · 1.24 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #F2F3F3;
}
.watch {
user-select: none;
}
.watch__counter,
.watch__btn {
display: flex;
align-items: center;
justify-content: center;
}
.watch__counter {
background-color: #FFFFFF;
border-radius: 10px;
height: 100px;
}
.watch__counter > span {
width: 100px;
font-size: 1.5rem;
line-height: 1;
color: #1e1e1e;
text-align: center;
}
.watch__counter > .watch__column {
width: 10px;
}
.watch__counter > .watch__column--ms,
.watch__counter > .watch__counter__millis {
color: #6968cf;
}
.watch__btn {
margin-top: 16px;
column-gap: 8px;
}
.watch__btn > button {
display: block;
padding: 8px 16px;
border: none;
border-radius: 4px;
color: #ffffff;
background-color: #514fcf;
outline: none;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
.watch__btn > button.active {
cursor: not-allowed;
opacity: 0.5;
}