-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (59 loc) · 1.03 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
justify-content: center;
align-items: center;
background-color: darkslategrey;
}
.main_box{
height: 500px;
width: 500px;
border: 3px solid red;
border-radius: 50%;
margin: 3rem;
background:linear-gradient(50deg, #f17882,#dcf083);
display: flex;
justify-content: center;
}
.box{
margin-top: 2rem;
color: #000;
display: flex;
text-align: center;
flex-direction: column;
}
.show{
margin-top: 100px;
text-align: center;
}
.show h2{
margin-top: 15px;
color: black;
font-size: 30px;
}
.clock{
width: auto;
padding: 10px;
font-size: 20px;
border: none;
border-radius: 25px;
border: 3px solid grey;
}
.btns{
display: flex;
justify-content: center;
align-items: center;
justify-content: space-around;
margin-top: 1rem;
}
.btn{
border: none;
font-size: 30px;
background: transparent;
text-align: center;
cursor: pointer;
}