-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
34 lines (32 loc) · 698 Bytes
/
styles.css
File metadata and controls
34 lines (32 loc) · 698 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Josefin sans;
}
h1 {
text-align:center;
color:white;
padding:20px;
margin-top:10px;
}
.clock{
margin-inline: auto;
background-color:rgb(92, 89, 89) ;
display: flex;
justify-content: center;
align-items: center;
padding: 3rem 4rem;
height: 100vh;
}
.clock span{
display: block;
font-size: 20px;
width: 100%;
text-align: center;
margin: 10px;
border: 2px solid grey;
background-color: grey;
color: yellow;
padding: 20px;
}