-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (63 loc) · 1.26 KB
/
style.css
File metadata and controls
75 lines (63 loc) · 1.26 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
73
74
75
body{
margin: 0%;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
justify-content: center;
background-image: url(mauro-lima-mOJquWMUoHs-unsplash.jpg);
font-family: sans-serif;
background-position: center;
background-size: cover;
overflow: hidden;
}
h2{
letter-spacing: 5px;
text-align: center;
text-transform: uppercase;
font-size: 30px;
color: gray;
}
div{
display: flex;
margin: 5px;
align-items: center;
}
.clock{
display: flex;
flex-direction: row;
}
.time{
display: flex;
flex-direction: column;
background-color: aqua;
opacity: .7;
}
span{
display: flex;
justify-content: center;
flex-direction: column;
font-size: 30px;
color: white;
text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
}
.text{
font-size: 8px;
text-transform: uppercase;
letter-spacing: 2px;
background-color: darkblue;
width: 100%;
text-align: center;
vertical-align: middle;
align-items: center;
height: 20px;
opacity: 1;
}
.num{
font-size: 80px;
opacity: 1;
padding: 20px;
}
#timing{
align-self: flex-end;
}