-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
54 lines (44 loc) · 891 Bytes
/
Copy pathcss.css
File metadata and controls
54 lines (44 loc) · 891 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
background: gray;
}
.container {
background: #fff;
margin: auto;
margin-top: 100px;
border: 1px solid black;
width: 600px;
justify-content: space-around;
padding: 0 20px;
border-radius: 5px;
}
.container span {
font-size: 100px;
}
.container .clock {
display: flex;
}
.container .num {
text-align: center;
padding: 0 10px;
}
.container .btn-control{
display: flex;
justify-content: space-between;
}
button {
font-size: 25px;
height: 50px;
width: 50px;
}
.container .action {
padding: 20px;
}
.action button{
width: 100px;
}