Skip to content

Commit 8431f96

Browse files
Update app container styles
1 parent cd27871 commit 8431f96

File tree

1 file changed

+23
-7
lines changed

1 file changed

+23
-7
lines changed

miscellaneous/styles.css

+23-7
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,29 @@
2121
}
2222

2323
.logo {
24-
max-width: 200px;
25-
margin: 20px 0;
24+
text-align: center;
25+
}
26+
27+
.logo img {
28+
width: 80%;
2629
}
2730

2831
.features {
2932
display: flex;
3033
gap: 50px;
3134
margin-top: 20px;
35+
flex-wrap: wrap;
36+
justify-content: center;
37+
gap: 1vw;
38+
width: 100%;
39+
max-width: 800px;
3240
}
3341

3442
.feature {
35-
display: flex;
36-
flex-direction: column;
3743
align-items: center;
3844
justify-content: center;
39-
min-width: 140px;
40-
min-height: 140px;
45+
min-width: 120px;
46+
min-height: 120px;
4147
text-align: center;
4248
text-decoration: none;
4349
color: inherit;
@@ -63,9 +69,15 @@
6369

6470
.feature:hover .feature-logo {
6571
transform: scale(1.2);
72+
-webkit-transform: scale(1.2);
73+
-moz-transform: scale(1.2);
74+
-ms-transform: scale(1.2);
75+
-o-transform: scale(1.2);
6676
}
6777

6878
.feature-logo {
79+
width: min(12vw, 100px);
80+
height: auto;
6981
max-width: 100px;
7082
margin-bottom: 10px;
7183
font-size: 40px;
@@ -77,8 +89,12 @@
7789
}
7890

7991
.feature-logo:hover {
80-
transform: scale(1.2);
8192
text-decoration: none;
93+
transform: scale(1.2);
94+
-webkit-transform: scale(1.2);
95+
-moz-transform: scale(1.2);
96+
-ms-transform: scale(1.2);
97+
-o-transform: scale(1.2);
8298
}
8399

84100
.feature-label {

0 commit comments

Comments
 (0)