blob: 734601e1f3e4fba107b9d731a1cc78e927458c24 (
plain)
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
|
.card__container {
display: flex;
justify-content: center;
align-items: center;
margin: 20px;
}
.stepper__container {
display: flex;
justify-content: center;
}
.button__container {
display: flex;
justify-content: space-evenly;
align-items: center;
}
.button {
background: transparent;
border: none;
}
.image {
height: 50px;
width: 50px;
}
.image:hover {
cursor: pointer;
transform: scale(1.1);
}
.image:active {
transform: scale(0.98);
}
.box {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 100%;
height: 100%;
}
.container {
display: flex;
align-items: center;
}
stepper__items {
font-size: 1.5rem;
}
|