-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (62 loc) · 1.24 KB
/
Copy pathstyle.css
File metadata and controls
63 lines (62 loc) · 1.24 KB
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container{
width: 100vw;
height: 100vh;
background: linear-gradient(135deg, #0b1e3b 0%, #3b82f6 100%);
color: white;
display: flex;
justify-content: center;
align-items: center;
z-index: -1;
}
.container::before{
content: '';
width: 100px;
height: 100px;
background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
border-radius: 10px;
position: relative;
left: 50px;
top: -90px;
z-index: 1;
}
.container::after{
content: '';
width: 100px;
height: 100px;
background: linear-gradient(135deg, #06b6d4 0%, #60a5fa 100%);
border-radius: 50%;
position: relative;
right: 40px;
bottom: -90px;
z-index: 1;
}
.clock-container{
width: 600px;
height: 200px;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
}
.clock{
display: flex;
gap: 30px;
font-size: 30px;
}
.clock .hour,.min,.sec{
display: flex;
flex-direction: column;
align-items: center;
text-transform: uppercase;
gap: 10px;
}
#hour::after, #min::after{
content: " :";
position: relative;
left: 15px;
}