-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (110 loc) · 1.7 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
:root {
padding: 0;
margin: 0;
font-family: 'Protest Guerrilla', sans-serif;
}
body {
color: white;
font-size: 16px;
margin-top: 2vh;
background-image: url('./static/bg-oliver.jpg');
background-size: cover;
background-repeat: no-repeat;
}
p {
color: orangered;
text-align: center;
text-shadow: 2px 2px 4px rgba(1, 2, 1, 0.7);
}
h1 {
color: ghostwhite;
font-size: 5rem;
font-weight: 400;
line-height: auto;
margin: 0 0 72px;
text-align: center;
text-shadow: 2px 2px 4px #093C14;
}
span {
color: teal;
}
a {
text-decoration: none;
color: lightgoldenrodyellow;
}
a::visited {
color: lightyellow;
}
.watch {
margin-top: 14vh;
display: flex;
justify-content: center;
}
.rim {
width: 300px;
height: 300px;
display: flex;
position: relative;
align-items: center;
border-radius: 50%;
border: 5px solid teal;
background-color: #5A424200;
text-shadow: 2px 2px 4px rgba(1, 2, 1, 0.7);
box-shadow: 5px 5px 30px 5px black;
}
.hour,
.minute,
.second {
right: 50%;
border: none;
border-radius: 40%;
position: absolute;
background-color: white;
transform-origin: right;
box-shadow: 2px 2px 30px 1px black;
}
.hour {
z-index: 1;
width: 70px;
height: 4px;
background-color: orangered;
}
.minute {
z-index: 2;
width: 90px;
height: 2px;
background-color: teal;
}
.second {
z-index: 3;
width: 130px;
height: 1px;
background-color: whitesmoke;
}
.twelve,
.three,
.six,
.nine {
font-size: 16px;
z-index: 5;
width: 20px;
height: 20px;
position: absolute;
}
.twelve {
top: 0%;
right: 140px;
}
.three {
right: 0%;
}
.six {
top: 275px;
right: 140px;
}
.nine {
left: 5px;
}
.footer {
backdrop-filter: blur(1px);
}