-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (52 loc) · 944 Bytes
/
style.css
File metadata and controls
57 lines (52 loc) · 944 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
57
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-image: url(pattern.jpg);
/*position: relative;*/
}
footer{
position: absolute;
bottom: 20px;
right: 30%;
vertical-align: middle;
margin: auto;
text-align: center;
font-size: 30px;
border: 1px solid black;
width: 550px;
border-radius: 4px;
font-family: 'Orbitron', sans-serif;
}
.main{
background-color: #ccc;
width: 700px;
margin: 100px auto;
height: 230px;
position: relative;
padding: 30px;
}
.badge{
background-color: #e66357;
color: white;
width: 85px;
margin: 0px auto;
position: absolute;
top: -17px;
right: 42%;
font-weight: bold;
padding: 5px 10px;
font-family: sans-serif;
}
.clock{
text-align: center;
font-size: 49px;
border-radius: 4px;
font-family: 'Orbitron', sans-serif;
height: 100%;
padding-top: 25px;
background-color: whitesmoke;
}