-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
40 lines (40 loc) · 804 Bytes
/
Copy pathstyles.css
File metadata and controls
40 lines (40 loc) · 804 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
body{
margin: 0%;
padding: 0%;
overflow: hidden;
background-image:url(timer.jpg);
background-repeat: no-repeat;
background-size: cover;
}
.container{
margin: 50px auto;
text-align: center;
}
h1{
font-size: 4em;
font-family: Arial, Helvetica, sans-serif;
color: #ffff;
}
#time{
font-size: 5em;
color: rgb(255, 255, 255);
font-weight: bold;
text-shadow: 5px 5px rgb(0, 0, 0);
}
button{
border: none;
padding: 18px 10px;
font-size: 1.5em;
width: 180px;
margin: 10px;
border-radius: 15px;
color: #2778a7;
font-weight: bold;
}
button:hover{
cursor: pointer;
background-color: transparent;
color: #ffff;
transition: 0.4s;
border: none;
}