blob: 87c938028f8d737d94aa467a9f29c95cf4371a6d (
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
55
56
57
58
|
.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;
}
.typo__container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: 180px;
}
|