-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
100 lines (90 loc) · 2 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
*{
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
outline: none;
scroll-behavior: smooth;
color: inherit;
}
section{
position: relative;
background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url('pexels-photo-280277.jpeg') ;
background-size: 100% 100%;
background-attachment: fixed;
height: 100vh;
width: 100vw;
overflow: hidden;
}
.clock{
position: absolute;
height: 90vh;
width: 90vw;
background-color: white;
border-radius: 3px;
top: 5%;
left: 5%;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-evenly;
font-family: 'Cinzel Decorative', cursive;
}
.clock p{
font-weight: bold;
font-size: 4rem;
letter-spacing: 5px;
color: #323232;
font-family: 'Cinzel Decorative', cursive;
}
.clock h2{
width: 90%;
letter-spacing: 2px;
color: #323232;
font-size: 2rem;
font-family: 'Cinzel Decorative', cursive;
text-align: center;
}
.clock ul{
display: flex;
align-items: center;
justify-content: space-around;
width: 93.5%;
border-bottom: 2px solid #323232;
padding-bottom: 25px;
}
.clock ul li{
font-weight: bold;
font-size: 2rem;
color: #323232;
text-transform: capitalize;
font-family: 'Cinzel Decorative', cursive;
}
.clock h6{
font-weight: bold;
font-size: 5rem;
color: #323232;
font-family: 'Cinzel Decorative', cursive;
}
.clock ol{
display: flex;
align-items: center;
justify-content: space-around;
width: 90%;
}
.clock ol li{
font-weight: bold;
font-size: 2rem;
color: #323232;
text-transform: capitalize;
font-family: 'Cinzel Decorative', cursive;
}
.clock h3{
width: 95%;
letter-spacing: 3px;
color: #323232;
font-size: 2rem;
font-family: 'Cinzel Decorative', cursive;
text-align: center;
padding-top: 10px;
}