-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
50 lines (45 loc) · 815 Bytes
/
main.css
File metadata and controls
50 lines (45 loc) · 815 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: url(tv-on-wall-header-image.jpg) no-repeat center/cover;
height: 100vh;
overflow: hidden;
}
h1 {
text-align: center;
font-weight: bold;
color: white;
}
.clock {
position: absolute;
top: 40%;
left: 53%;
color: white;
transform: translateX(-50%) translateY(-50%);
font-size: 60px;
font-family: "PT Sans", sans-serif;
letter-spacing: 7;
font-weight: bold;
}
footer {
position: relative;
top: 320px;
}
footer a {
position: relative;
left: 45%;
display: inline-block;
text-decoration: none;
color: #fff;
font-size: 16px;
margin: 0 8px;
text-align: center;
justify-content: center;
}
footer a:hover,
footer a:active {
color: coral;
}