-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
35 lines (35 loc) · 765 Bytes
/
style.css
File metadata and controls
35 lines (35 loc) · 765 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
/* COUNTER PROGRAM */
*{
padding: 0;
margin: 0;
font-family: sans-serif;
box-sizing: border-box;
}
body{
background-image: url(https://cdn.pixabay.com/photo/2016/11/05/13/43/fractals-1800242_1280.jpg);
background-position: center;
background-size: cover;
}
#countLabel{
display: block;
font-size: 10em;
text-align: center;
font-family: helvetica;
color: white;
}
#containerbtn{
text-align: center;
}
.buttons{
padding: 10px 20px;
font-size: 1.5em;
color: white;
background-color: rgb(219, 102, 0);
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.25s;
}
.buttons:hover{
background-color: rgb(16, 125, 227);
}