-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (38 loc) · 723 Bytes
/
style.css
File metadata and controls
41 lines (38 loc) · 723 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.main {
height: 250px;
width: 500px;
margin: 10vh auto;
background: blueviolet;
position: relative;
border-radius: 8px;
padding: 50px;
}
.badge {
height: 40px;
width: 200px;
background: rgb(0, 146, 214);
position: absolute;
left: 50%;
margin-left: -100px;
top: -20px;
text-align: center;
line-height: 40px;
border-radius: 8px;
font-family: "Orbitron", sans-serif;
font-weight: bold;
font-size: large;
}
.clock {
background: greenyellow;
text-align: center;
font-size: 4rem;
height: 100%;
border-radius: 8px;
padding-top: 30px;
font-family: "Orbitron", sans-serif;
}