blob: 1c6220e05ed8177c7016ab2e8b2ce05225a7ef7d (
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
|
::-webkit-scrollbar {
display: none;
}
html {
height: 100%;
background-size: cover;
-webkit-overflow-scrolling: touch;
}
body {
font-size: 1.2rem;
font-family: Arial;
color: map-get($colors, font);
margin: 5%;
.parent {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
height: 100%;
.item {
.icon {
width: 100%;
height: 100%;
}
.name {
width: 100%;
text-align: center;
text-transform: uppercase;
margin-top: -20%;
}
}
}
.log {
display: none;
position: absolute;
bottom: 0;
left: 0;
width: 1080px;
background: white;
font-size: 1.5rem;
}
}
|