Skip to content
This repository was archived by the owner on Oct 18, 2022. It is now read-only.

Commit 3abd5a1

Browse files
committed
Lots of cleanup
1 parent 1fdd1d5 commit 3abd5a1

26 files changed

+805
-954
lines changed

assets/css/_variables.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ $button-primary: #f94220;
3232
$border-radius: 4px;
3333

3434
@mixin mobile {
35-
@media only screen and (max-device-width: 480px) {
35+
@media only screen and (max-width: 480px) {
3636
@content;
3737
}
3838
}
@@ -41,4 +41,4 @@ $border-radius: 4px;
4141
@media only screen and (min-width: 481px) {
4242
@content;
4343
}
44-
}
44+
}

assets/css/main.scss

Lines changed: 70 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ h1 {
5555
letter-spacing: 0.1rem;
5656

5757
@include mobile {
58-
font-size: 4.5rem;
58+
font-size: 4.2rem;
5959
}
6060
}
6161

@@ -110,6 +110,16 @@ strong {
110110
display: flex;
111111
justify-content: center;
112112
flex-flow: row wrap;
113+
margin-bottom: 1rem;
114+
115+
> * {
116+
flex: 1;
117+
margin-right: 1rem;
118+
119+
&:last-child {
120+
margin-right: 0;
121+
}
122+
}
113123
}
114124

115125
.inherit-color {
@@ -209,7 +219,7 @@ button {
209219
background-image: url($icon-url);
210220
background-size: cover;
211221
display: inline-flex;
212-
width: $width;
222+
width: $width;
213223
height: $height;
214224
content: "";
215225
margin-right: .4rem;
@@ -254,7 +264,7 @@ button {
254264

255265
&:hover {
256266
background-color: #171629;
257-
}
267+
}
258268
}
259269

260270
.container {
@@ -265,4 +275,60 @@ button {
265275

266276
section {
267277
margin-bottom: 6rem;
268-
}
278+
}
279+
280+
281+
ul.logo-cloud {
282+
display: flex;
283+
align-items: center;
284+
justify-content: center;
285+
flex-flow: row wrap;
286+
list-style-type: none;
287+
margin: 0;
288+
padding: 0;
289+
290+
li {
291+
width: 25%;
292+
padding: 2rem;
293+
294+
@include mobile {
295+
width: 50%;
296+
padding: 0 1.5rem;
297+
}
298+
299+
img {
300+
object-fit: contain;
301+
}
302+
}
303+
}
304+
305+
ul.logo-grid {
306+
display: flex;
307+
justify-content: center;
308+
flex-flow: row wrap;
309+
list-style-type: none;
310+
margin: 0;
311+
padding: 0;
312+
313+
li {
314+
padding: 0;
315+
height: 7rem;
316+
background-color: #fff;
317+
border-radius: $border-radius;
318+
width: 25%;
319+
margin: .5%;
320+
display: flex;
321+
align-items: center;
322+
justify-content: center;
323+
324+
@include mobile {
325+
width: 48%;
326+
margin: 1%;
327+
}
328+
329+
img {
330+
max-width: 80%;
331+
max-height: 80%;
332+
}
333+
}
334+
}

0 commit comments

Comments
 (0)