-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (33 loc) · 744 Bytes
/
style.css
File metadata and controls
38 lines (33 loc) · 744 Bytes
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
:root {
--backgroundColour: linear-gradient(120deg, #0c0c0c 0%, #575757 100%);
--navBackgroundColour: rgba(0, 0, 0, 0.2);
--navForegroundColour: white;
}
main.appsListHolder {
min-height: calc(100vh - 125px);
}
section.appsList {
margin: 10px;
margin-top: 80px;
padding: unset;
padding-left: unset;
padding-right: unset;
}
.appsListLoader {
padding-top: calc(50vh - 150px);
padding-bottom: calc(50vh - 150px);
text-align: center;
}
.appTile {
display: inline-block;
width: calc(25% - 10px);
height: 12.5vw;
margin: 5px;
background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 550px) {
.appTile {
width: calc(50% - 10px);
height: 25vw;
}
}