-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (55 loc) · 951 Bytes
/
style.css
File metadata and controls
64 lines (55 loc) · 951 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
58
59
60
61
62
63
64
body {
font-family: sans-serif;
}
h1 {
text-align: center;
font-size: 3rem;
font-weight: bolder;
color: #ffffff;
background-color: #4982f3;
padding: 2rem;
}
.compteur-container {
display: flex;
flex-direction: column;
align-items: center;
}
.btn {
font-size: 2.5rem;
text-transform: uppercase;
cursor: pointer;
font-weight: bold;
border: none;
padding: 1rem 2rem;
}
.btn-remove {
color: #ffffff;
background-color: #d8403b;
transition: ease-in-out all 0.3s;
}
.btn-remove:hover,
.btn-remove:focus {
background-color: #ff4842;
}
.btn-add {
color: #ffffff;
background-color: #3b9ed8;
transition: ease-in-out all 0.3s;
}
.btn-reset{
color: white;
background-color: rgb(4, 104, 24);
}
.btn-add:hover,
.btn-add:focus {
background-color: #45bbff;
}
.compteur {
text-align: center;
font-size: 5rem;
font-weight: bold;
color: #3e3d3d;
background: #dcdcdc;
padding: 2rem;
width: 10%;
}