forked from Teerths/TimelessDevelopments
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapps.css
More file actions
73 lines (68 loc) · 1.46 KB
/
Copy pathapps.css
File metadata and controls
73 lines (68 loc) · 1.46 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
.apps {
position: absolute;
top: 6.5vw;
left: 7.5vw;
width: 85vw;
height: 40vw;
margin: 0 auto;
padding: 3vw;
background: linear-gradient(to bottom, var(--gradient-1), var(--gradient-2));
z-index: 99999;
border-radius: 1vw;
display: flex;
justify-content: center;
flex-wrap: wrap;
padding: 2vw;
padding-top: 6vw;
overflow-y: scroll;
overflow-x: hidden;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.apps h1 {
position: absolute;
left: 50%;
top: 1.2vw;
transform: translateX(-50%);
font-size: 4vw;
color: var(--settings-color);
text-align: center;
margin: 0;
font-family: 'Montserrat', sans-serif;
}
.apps .app {
position: relative;
width: 210px;
height: 220px;
margin-bottom: 2vw;
border-radius: 1vw;
background-color: var(--settings-background-color);
transition: all 0.3s ease;
margin: 1vw;
}
.apps .app:hover {
transform: scale(1.05);
}
.apps .app img {
position: absolute;
top:40%;
left:50%;
transform: translate(-50%, -50%);
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 1vw;
}
.apps .app h2 {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
left: 50%;
transform: translate(-50%);
top: 79%;
text-align: center;
font-size: 26px;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
color: var(--color-1);
}