-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
84 lines (77 loc) · 1.34 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
@font-face {
font-family: 'Digital-7';
src: url('digital-7.ttf');
}
body{
background-color: #000000;
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
}
.box{
background-color: #fff;
height: 200px;
width: 400px;
border-radius: 5px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
user-select: none;
cursor: pointer;
box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}
.frame{
display: flex;
gap: 3px;
}
h3{
font-weight: 500;
color:#130f40;
text-transform: uppercase;
margin-bottom: 25px;
}
.hrs,
.min,
.sec,
.ms,
.colon{
width: 50px;
height: 50px;
font-size: 50px;
text-align: center;
line-height: 50px;
color: #000000;
font-family: 'Digital-7';
}
.colon{
width: 10px;
height: 50px;
}
.buttons{
margin-top: 25px;
}
.buttons button{
border: none;
padding: 5px 20px;
color:white;
border-radius: 3px;
text-transform: uppercase;
}
.start{background-color: #000000;}
.stop{background-color: #000000;}
.reset{background-color: #000000;}
.start-active,
.stop-active{
pointer-events: none;
opacity: 0.5;
}