blob: b2b97e58962ed36802b66f4753bafcca92d83a3b (
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
|
.previous {
margin: auto;
width: 200px;
height: 200px;
border: solid;
align: center;
text-align: center;
grid-column: 1;
background-color: grey;
}
.current {
margin: auto;
width: 300px;
height:300px;
border: solid;
text-align: center;
grid-column: 2;
background-color: grey;
}
.next {
margin: auto;
width: 200px;
height: 200px;
border: solid;
align: center;
text-align: center;
grid-column: 3;
background-color: grey;
}
.container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 10px;
grid-template-rows: 1fr;
}
.step-count {
text-align: center;
}
|