blob: a8993722197673457c61b3efd58e3776a4c76c78 (
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
59
60
61
62
63
64
65
66
|
h4{text-align: center;}
h1{text-align: center; font-size: 50px}
.previous {
margin: auto;
margin-top: 40px;
width: 200px;
height: 200px;
border: solid;
align: center;
text-align: center;
grid-column: 1;
grid-row: 2;
background-color: grey;
}
.title {
margin: auto;
text-align: center;
grid-row: 1;
grid-column: 2;
}
.current {
margin: auto;
margin-top: 30px;
width: 300px;
height:300px;
border: solid;
text-align: center;
grid-column: 2;
grid-row: 2;
background-color: grey;
}
.next {
margin: auto;
margin-top: 40px;
width: 200px;
height: 200px;
border: solid;
align: center;
text-align: center;
grid-column: 3;
grid-row: 2;
background-color: grey;
}
.container {
text-align: center;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 10px;
grid-template-rows: 1fr 2fr;
}
.step-count {
text-align: center;
}
.last-button {
grid-row: 2;
grid-column: 3;
margin-top: 100px;
}
|