-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
91 lines (86 loc) · 1.92 KB
/
styles.css
File metadata and controls
91 lines (86 loc) · 1.92 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
.body {
display: flex;
justify-content: center;
align-items: center;
background-color: grey;
}
.main {
margin: 0;
margin-top: 10px;
border-radius: 25px;
display: flex;
justify-content: flex-end;
flex-wrap: wrap;
height: 686px;
width: 350px;
background-image: url(./assets/wallpapers/wallpaper-default.png);
}
.main__button {
margin-top: 50px;
width: 500px;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
.main__button > img:hover {
transform: scale(105%);
cursor: pointer;
}
.info__container {
background-color: rgba(0, 0, 0, 0.5);
margin-top: 120px;
margin-right: 25px;
height: 20px;
width: 200.5px;
display: flex;
flex-direction: row;
justify-content: flex-start;
justify-content: space-between;
padding-right: 55px;
align-items: center;
color: white;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
list-style: none;
}
.info__container > li > img {
width: 20px;
}
.appsList {
transform: scale(100%);
height: 300px;
display: grid;
/* each column should be the same width */
grid-template-columns: 1fr 1fr 1fr;
/* each column should have some space between them */
grid-gap: 20px;
margin-right: 40px;
list-style: none;
}
.appsList__item {
text-align: center;
color: white;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-size: 15px;
font-weight: bold;
text-shadow: 1px 1px 2px black;
}
.appsList__item > img {
width: 75px;
height: 75px;
}
.appsList__item > img:hover {
cursor: pointer;
transform: scale(105%);
}
@media only screen and (max-width: 576px) {
.appsList__item {
margin-right: 0;
}
}
@media only screen and (max-width: 576px) {
.main {
margin-top: 60px;
margin-right: 8px;
}
}