-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (48 loc) · 916 Bytes
/
style.css
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
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
background-image: url(count1.jpg);
max-width: 100%;
background-size: cover
}
.button:hover{
background-color: black;
}
h1{
text-align: center;
color: gray;
margin-bottom: 1rem;
margin-top: 1rem;
}
#count{
text-align: center;
background: grey;
color: white;
max-width: 50%;
margin: auto;
}
.button{
display: flex;
flex-direction: column;
margin: auto;
/* margin-right: auto; */
gap: 1rem;
max-width: 10%;
justify-content: center;
align-items: center;
border: none;
border-radius: 5px;
margin-top: 1rem;
}
#saveBtn{
margin-top: 3.5rem;
background-color: green;
/* max-width: 10%; */
border: none;
border-radius: 2px;
width: 100%;
color: whitesmoke;
}