-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
46 lines (42 loc) · 1.05 KB
/
style.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
.main{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-image: url(https://media.istockphoto.com/id/1344474606/vector/half-hidden-red-new-year-clock-showing-2022.jpg?s=612x612&w=0&k=20&c=0UpJ-6kDgtnJwDe5xMtl_4QnvqcCGjmVqP4oi8r3lg8=);
background-repeat : no-repeat;
background-size : cover;
}
.timers{
display: flex;
justify-content: space-between;
margin-block: 10px;
}
.watchcontent{
color: white;
outline: none;
border: 3.02px solid blue;
border-radius: 50%;
height: 200px;
width: 200px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.watchcontent{
display: flex;
}
.btns{
border: none;
outline: none;
background-color: orange;
padding: 2px 10px;
border-radius: 3px;
color: white;
}
.btns:hover{
box-shadow: -4px 8px 7px -2px rgba(252,124,5,0.75);
-webkit-box-shadow: -4px 8px 7px -2px rgba(235, 119, 11, 0.75);
-moz-box-shadow: -4px 8px 7px -2px rgba(252,124,5,0.75);
}