-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (38 loc) · 697 Bytes
/
style.css
File metadata and controls
45 lines (38 loc) · 697 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background: white;
background-image: url("../clock.jpg");
background-position: center;
background-size: cover;
}
.main {
background: #ccc;
width: 400px;
height: 175px;
margin: 100px auto;
position: relative;
padding: 30px;
}
.badge {
width: 96px;
background: #e66357;
color: white;
padding: 5px 10px;
font-family: sans-serif;
font-weight: bold;
position: absolute;
top: -15px;
left: 40%;
}
.clock {
background: #EBEBEB;
text-align: center;
font-size: 55px;
height: 100%;
padding-top: 25px;
border-radius: 4px;
}