-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (59 loc) · 1.06 KB
/
style.css
File metadata and controls
59 lines (59 loc) · 1.06 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
body{
margin: 0;
font-family: sans-serif;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
justify-content: center;
background: url('8.jpeg');
background-size: cover;
overflow: hidden;
}
h1{
text-transform: uppercase;
letter-spacing: 1rem;
font-size: 3rem;
text-align: center;
}
.clock{
display: flex;
}
.clock div{
margin: 0.5rem;
position: relative;
}
.clock span{
width: 100px;
height: 100px;
background-color: burlywood;
opacity: .8;
display: flex;
justify-content: center;
align-items: center;
font-size: 4rem;
text-shadow: 2px 2px 4px wheat;
}
.clock .text{
height: 30px;
font-size: 1rem;
text-transform: uppercase;
background: darkkhaki;
opacity: .8;
}
.clock #am {
bottom: 0;
position: absolute;
width: 4rem;
height: 2rem;
font-size: 2rem;
background: darkgoldenrod;
}
.link{
background-color: burlywood;
border-radius: 50%;
}
.link a{
text-decoration: none;
color: darkslategray;
}