Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
3kh0
GitHub Repository: 3kh0/3kh0.github.io-replit
Path: blob/main/css/mobile.css
617 views
1
/*-------------------- Mobile --------------------*/
2
3
@media only screen and (max-width: 480px) {
4
.navlogo {
5
display: none;
6
}
7
8
.games {
9
grid-template-columns: repeat(auto-fill, 150px);
10
grid-gap: 1rem;
11
margin: 1rem;
12
}
13
14
.game {
15
height: 185px;
16
width: 150px;
17
}
18
19
.game-image {
20
height: 150px;
21
width: 150px;
22
}
23
24
.game-text {
25
line-height: 35px;
26
width: 150px;
27
}
28
29
.review:last-child {
30
display: none;
31
}
32
33
.review:first-child {
34
display: none;
35
}
36
37
.review-placeholder {
38
display: none;
39
}
40
}
41
42
@media only screen and (max-height: 432px) {
43
.reviews-link {
44
display: none;
45
}
46
}
47
48