-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmyStyle.css
More file actions
47 lines (46 loc) · 999 Bytes
/
myStyle.css
File metadata and controls
47 lines (46 loc) · 999 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
44
45
46
47
*{
margin: 0;
padding: 0;
}
.clock-body{
background-color: #4e505a;
height: 100vh;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
/* font-style: P000; */
/* font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif */
}
.clock-box{
/* margin-top: 200px; */
height: 300px;
width: 600px;
border-radius: 5px;
background-color: rgb(146, 4, 4);
color: #000000;
padding: 10px 20px;
font-size: 60px;
border: 5px solid #ffffff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.date-day{
display: flex;
flex-direction: row;
justify-content: space-between;
width: 65%;
}
.time{
display: flex;
align-items: center;
justify-content: center;
font-size: 100px;
}
.am-pm{
/* margin: 0 15px; */
margin-left: 15px;
font-weight: 100;
}