-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (39 loc) · 678 Bytes
/
style.css
File metadata and controls
46 lines (39 loc) · 678 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: papayawhip;
text-align: center;
color: aliceblue;
}
.watch {
width: 100%;
max-width: 480px;
background-color: black;
margin: 3rem auto;
padding: 2rem 1rem;
border-radius: 10px;
}
.time {
font-size: 5rem;
font-weight: 300;
margin-bottom: 1rem;
}
.btns button {
padding: 0.5rem;
margin-inline: 5px;
font-size: 1.2rem;
background-color: pink;
border: none;
outline: none;
color: black;
transition: 0.4s;
}
.btns button:hover {
opacity: 0.7;
}
.btns button:active {
background-color: papayawhip;
}