-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (44 loc) · 1.17 KB
/
style.css
File metadata and controls
72 lines (44 loc) · 1.17 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
64
65
66
67
68
69
70
71
72
@font-face {
font-family: dash-display;
src: url('dash_digital-7.ttf') format('woff2')
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
color:rgb(240, 245, 249);
display: flex;
justify-content: center;
background-image: url("fordev.png") ;
margin-top: 21vh;
font-weight: 700;
/* background things */
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
}
#clock{
font-size: 100px;
font-weight: 700;
box-shadow: 0 8px 32px 0 #00000050;
padding:20px;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 12px;
background: linear-gradient(125deg, rgba(255,255,255, 0.1),rgba(255,255,255,0.3));
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
text-shadow: -1px 4px 3px rgba(50, 47, 47, 0.2);
transition: 0.5s;
margin-top: 25vh;
}
.banner{
font-size: 100px;
text-transform: uppercase;
align-items: center;
margin-bottom: 30%;
padding-left: 21px;
text-shadow: -1px 4px 3px rgba(36, 35, 35, 0.1);
}