blob: b9b5bd1463b6ea84b82118f2fa00aff5ab184a15 (
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
|
@media (min-width: 600px) and (orientation: portrait) {
body {
display: flex;
align-items: center;
justify-content: center;
}
div.lobby {
max-width: 500px;
display: flex;
text-align: center;
flex-direction: column;
align-items: center;
}
div.content {
min-width: 70vw;
min-height: 70vh;
display: flex;
flex-direction: column;
}
div.info {
flex-direction: row;
margin-left: 0px;
margin-top: 10px;
}
div.settings, div.stats {
width: auto;
}
div.settings {
margin-top: 0px;
margin-left: 10px;
}
div.games {
flex: 4;
}
}
|