-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
85 lines (78 loc) · 1.53 KB
/
styles.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
.container {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
}
.counter_container{
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
}
#counter_area{
display: flex;
background-color: rgb(71, 198, 54);
border-color: rgb(71, 198, 54);
border-radius: 5%;
width: 60px;
height: 50px;
justify-content: center;
text-align: center;
color: white;
align-items: center;
}
#form_container{
display: flex;
height: 15px;
width: 30px;
gap: 10px;
justify-content: center;
text-align: center;
align-items: center;
}
#rest{
display: flex;
background-color: rgb(192, 59, 59);
border-color: rgb(192, 59, 59);
width: 50px;
height: 30px;
border-radius: 5%;
justify-content: center;
text-align: center;
align-items: center;
font-size: 15px;
}
#st{
display: flex;
width: 50px;
height: 30px;
justify-content: center;
text-align: center;
align-items: center;
background-color: rgb(71, 198, 54);
border-color: rgb(38, 209, 15);
border-radius: 5%;
font-size: 15px;
}
#contener{
display: flex;
gap: 50px;
flex-direction: column;
justify-content: center;
text-align: center;
align-items: center;
}
#substractBtn{
border: none;
font-size: 30px;
}
#addBtn{
border: none;
font-size: 30px;
}