blob: 2c92dc55018d078b49183b227764ddda54343767 (
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
|
.controllers {
display: flex;
flex-direction: column;
align-items: end;
margin: 1rem 0;
}
.controllers-buttons {
display: flex;
align-items: center;
gap: 1rem;
}
.controllers button {
width: 3.5rem;
height: 3rem;
border-radius: 0.5rem;
background: #000;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
border: none;
cursor: pointer;
}
.controllers button:hover {
background: #555;
}
main {
max-width: unset;
margin: 2rem;
}
.slide-container {
margin: 0 1rem;
}
|