-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflex.css
More file actions
56 lines (56 loc) · 932 Bytes
/
flex.css
File metadata and controls
56 lines (56 loc) · 932 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
48
49
50
51
52
53
54
55
56
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #111;
}
/* container CSS setup */
.container {
background-color: #000;
border: 10px red solid;
border-radius: 50%;
height: 40rem;
width: 40rem;
margin: auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: absolute;
top: 5%;
bottom: 5%;
left: 10%;
right: 10%;
}
/* date and time css setup */
.watch-time,
.watch-date {
font-family: "Sriracha", cursive;
/* margin: 3rem; */
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid red;
border-radius: 50%;
}
/* individual css setup */
.hour,
.minute,
.second,
.date,
.month,
.day {
color: #fff000;
height: 100%;
width: 100%;
font-size: 1.3rem;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
margin: 10px;
}