-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (38 loc) · 871 Bytes
/
style.css
File metadata and controls
43 lines (38 loc) · 871 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
body {
display: flex;
width: 100%;
height: 100vh;
background-color: rgb(20, 19, 19);
}
.maindiv {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100vh;
color: wheat;
/* border: 2px solid black; */
}
p {
font-size: 50px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: 700;
}
.clockheader {
border: 2px solid rgb(234, 181, 181);
border-radius: 10px;
padding: 0 15px 0 15px;
background-color: black;
box-shadow: 2px 1px 5px .75px;
display: list-item;
align-items: center;
justify-content: center;
text-align: center;
}
.clockheader:hover{
background-color: rgb(113, 115, 71);
/* background-color: transparent; */
color: white;
border-radius: 50px;
transform: translate(100 x);
}