-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapps.css
102 lines (88 loc) · 1.81 KB
/
apps.css
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
92
93
94
95
96
97
98
99
100
101
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');
body {
overflow: visible !important;
}
.container-apps {
margin-top: 39px;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1.8em;
}
.column {
/* Group 1 */
width: 145px;
height: 171px;
transition: all 0.2s ease;
}
.column img {
/* Rectangle 1 */
position: absolute;
width: 145px;
height: 145px;
background: #F8F8F8;
border-radius: 25px;
transition: all 0.2s ease;
}
.column p {
/* Label */
position: absolute;
width: 145px;
height: 19px;
font-style: normal;
font-weight: 550;
font-size: 16px;
line-height: 19px;
text-align: center;
color: #FFFFFF;
text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
margin-top: 150px;
transition: all 0.2s ease;
text-transform: none !important;
}
.column:hover,
.column:hover p {
transform: scale(1.2);
}
.column:hover .label {
transform: translateX(-50%) scale(1.3);
}
/* Container apps 2 */
.column2 {
/* Group 1 */
width: 145px;
height: 171px;
transition: all 0.2s ease;
}
.column2 img {
/* Rectangle 1 */
position: absolute;
width: 305px;
height: 145px;
background: #000000;
border-radius: 25px;
transition: all 0.2s ease;
}
.column2 p {
/* Label */
position: absolute;
width: 145px;
height: 19px;
font-style: normal;
font-weight: 550;
font-size: 24px;
line-height: 19px;
text-align: center;
color: #FFFFFF;
text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
margin-top: 155px;
transition: all 0.2s ease;
text-transform: none !important;
}
.column2:hover,
.column2:hover p {
transform: scale(1.1);
}
.column2:hover .label {
transform: translateX(-50%) scale(1.3);
}