-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (42 loc) · 834 Bytes
/
Copy pathstyle.css
File metadata and controls
51 lines (42 loc) · 834 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(120deg, #1d2671, #c33764);
}
.clock {
width: 100%;
max-width: 380px;
height: 24vh;
display: flex;
justify-content: center;
align-items: center;
background: rgba(255, 255, 255, 0.12);
backdrop-filter: blur(12px);
border-radius: 15px;
padding: 20px;
box-shadow:
0px 0px 10px rgba(0, 0, 0, 0.1),
0px 10px 20px rgba(0, 0, 0, 0.7);
}
.clock h1 {
font-size: 3.5rem;
font-weight: 600;
color: #ffffff;
letter-spacing: 2px;
}
.clock span {
position: relative;
top: -13%;
margin-left: 15px;
font-size: 1rem;
font-weight: 700;
color: #ffffff;
}