-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
36 lines (36 loc) · 713 Bytes
/
styles.css
File metadata and controls
36 lines (36 loc) · 713 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
body{
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(to bottom right,#3498db, #e74c3c);
}
.clock-container{
width: 300px;
height: 300px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.2);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
}
.timer{
font-size: 35px;
color: #FFFFFF;
}
.controls{
display: flex;
margin-top: 20px;
}
button{
background-color: #4ecdc4;
color: #FFFFFF;
border: none;
padding: 10px 20px;
border-radius: 10px;
cursor: pointer;
margin: 0 10px;
}