-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (78 loc) · 1.54 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
*{margin:0;padding:0;}
body{
background:#191919;
display: grid;
place-items: center;
height: 100vh;
}
main{
border-radius: 70px 70px 100px 100px;
background-color: #323542;
width: 250px;
height: 275px;
display: flex;
flex-direction: column;
gap: 20%;
align-items: center;
justify-content: center;
box-shadow: 5px 5px 10px 0px #121212;
position: relative;
}
main::after{
content: "";
position: absolute;
width: 50px;
height: 10px;
background-color: rgb(17, 17, 17);
top: -8px;
border-radius: 100px 100px 0 0;
}
#timeDiv{
background-color: rgba(18, 18, 18, 0.6);
border: 1px solid black;
width: 107px;
padding: 10px 20px;
position: relative;
}
#timeDiv::before{
content: "";
position: absolute;
background-color: rgba(18, 18, 18, 0.1);;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
#timeDiv{
font-size: 30px;
color:#dfdfdf;
}
#buttonsSec{
display: flex;
justify-content: center;
gap: 10%;
width: 100%;
}
#buttonsSec div{
display: flex;
flex-direction: column;
align-items: center;
gap: 5px;
}
#buttonsSec button{
border-radius: 50%;
width: 25px;
height: 20px;
border: none;
background: radial-gradient(#afafaf,#dfdfdf 50%);
cursor: pointer;
}
#buttonsSec button:hover{
background: #afafaf
}
#buttonsSec button:active{
background: #808080;
}
#buttonsSec span{
color: #dfdfdf;
}