-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimer.css
More file actions
47 lines (39 loc) · 771 Bytes
/
timer.css
File metadata and controls
47 lines (39 loc) · 771 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
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background-image: url("imgage.png");
}
.main{
background:rgb(191, 183, 218);
width:400px;
margin:75px auto;
height: 175px;
position: relative;
padding:30px;
}
.clocky{
background:#e66357;
width:85px;
color: cornsilk;
padding: 5px 5px;
font-family: sans-serif;
font-weight: bold;
position: absolute;
top:-19px;
left:38%;
text-align: center;
}
.time{
background: rgb(207, 209, 205);
width:340px;
height:100%;
font-size:40px;
text-align: center;
padding-top: 30px;
border-radius: 5px;
font-family: Orbitron;
}