Skip to content

Commit 021b70b

Browse files
committed
refactor: remove css
1 parent 179b2e1 commit 021b70b

File tree

10 files changed

+80
-80
lines changed

10 files changed

+80
-80
lines changed

themes/al/assets/scss/sections/blog-list.scss

Lines changed: 0 additions & 41 deletions
This file was deleted.

themes/al/assets/scss/sections/brands.scss

Whitespace-only changes.

themes/al/assets/scss/sections/cta.scss

Whitespace-only changes.

themes/al/assets/scss/sections/hero.scss

Lines changed: 0 additions & 5 deletions
This file was deleted.

themes/al/assets/scss/sections/newsletter.scss

Lines changed: 0 additions & 17 deletions
This file was deleted.

themes/al/assets/scss/sections/service.scss

Lines changed: 0 additions & 7 deletions
This file was deleted.

themes/al/assets/scss/sections/services.scss

Whitespace-only changes.

themes/al/assets/scss/sections/testimonials.scss

Whitespace-only changes.

themes/al/assets/scss/sections/blog-single.scss renamed to themes/al/assets/scss/shared/_global.scss

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,47 @@
1+
// Blog list
2+
.section.blog-list {
3+
.pagination {
4+
justify-content: center;
5+
background-color: $dark;
6+
}
7+
}
8+
9+
.pagination {
10+
justify-content: center;
11+
.page-item.active .page-link {
12+
border-color: $dark;
13+
color: $dark;
14+
}
15+
.page-link {
16+
17+
color: $dark;
18+
border-color: $dark;
19+
}
20+
.page-item.disabled .page-link {
21+
border-color: $dark;
22+
}
23+
}
24+
25+
.aspect-ratio-62-5 {
26+
position: relative;
27+
width: 100%;
28+
max-height: 0;
29+
padding-bottom: 62.5%;
30+
31+
img {
32+
position: absolute;
33+
top: 0;
34+
bottom: 0;
35+
left: 0;
36+
right: 0;
37+
width: 100%;
38+
height: 100%;
39+
object-fit: cover;
40+
object-position: center;
41+
}
42+
}
43+
44+
// Blog single
145
.blog-content {
246
max-width: 1100px;
347
font-size: 18px;
@@ -72,6 +116,7 @@
72116
}
73117
}
74118
}
119+
75120
.post-header-left {
76121
@media only screen and (min-width: 1200px) {
77122
padding-left: 48px;
@@ -113,3 +158,37 @@
113158
.pagination {
114159
justify-content: center;
115160
}
161+
162+
// Home
163+
.me-image {
164+
img{
165+
border-radius: 30px;
166+
}
167+
}
168+
169+
.section.service {
170+
.service-feature:nth-child(odd) {
171+
@media (min-width: 1200px) {
172+
flex-direction: row-reverse;
173+
}
174+
}
175+
}
176+
177+
// Newsletter
178+
.newsletter {
179+
form {
180+
@media only screen and (min-width: 1200px) {
181+
width: 550px;
182+
}
183+
}
184+
.title {
185+
font-size: 58px;
186+
}
187+
.privacy {
188+
font-size: 12px;
189+
}
190+
}
191+
192+
.subscription-confirmed {
193+
color: red;
194+
}

themes/al/assets/scss/shared/shared.scss

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,7 @@
33
@import "fonts";
44
@import "utilities";
55

6+
@import "global";
67
@import "header";
78
@import "footer";
89

9-
@import "../sections/hero";
10-
@import "../sections/brands";
11-
@import "../sections/service";
12-
@import "../sections/services";
13-
@import "../sections/testimonials";
14-
@import "../sections/cta";
15-
16-
@import "../sections/blog-list";
17-
@import "../sections/blog-single";
18-
@import "../sections/newsletter";

0 commit comments

Comments
 (0)