-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (85 loc) · 1.42 KB
/
style.css
File metadata and controls
95 lines (85 loc) · 1.42 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
body {
margin: 0;
font-family: sans-serif;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
justify-content: center;
background: #536f9b;
background-size: cover;
overflow: hidden;
}
h2 {
text-transform: uppercase;
letter-spacing: 4px;
font-size: 14px;
text-align: center;
color: white;
}
.clock {
display: flex;
}
.clock div {
margin: 5px;
position: relative;
}
.clock span {
width: 100px;
height: 80px;
background: slateblue;
opacity: 0.8;
color: white;
display: flex;
justify-content: center;
align-items: center;
font-size: 50px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.clock .text {
height: 30px;
font-size: 10px;
text-transform: uppercase;
letter-spacing: 2px;
background: darkblue;
opacity: 0.8;
}
.clock #ampm {
bottom: 0;
position: absolute;
width: 60px;
height: 30px;
font-size: 20px;
background: green;
}
.footer {
display: grid;
place-items: center;
padding: 20px;
color: #000;
}
.footer h2 {
font-size: 1.5rem;
margin-bottom: 1.6rem;
color: var(--text-color)
}
.footer-social a i {
color: rgb(10, 26, 208);
font-size: 25px;
margin-left: 10px;
text-align: center;
line-height: 40px;
background-color: #fff;
border-radius: 50%;
width: 40px;
height: 40px;
}
.copyright {
padding: 20px;
background: var(--main-color);
text-align: center;
color: #fff;
}
.copyright a {
color: #22cf91;
}