Skip to content

Commit 70e64c3

Browse files
committed
Gradient and variable
1 parent 2db468c commit 70e64c3

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

assets/scss/components/_horizontal-line.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
height: 5px;
33
width: 80%;
44
border: 0;
5-
border-bottom: 1px solid #34583d;
6-
}
5+
border-bottom: 1px solid $green2;
6+
}

assets/scss/style.scss

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ $font-family-heading: 'Playfair Display', serif, -apple-system;
2929
// Footer
3030

3131
$footer-background-color: $green2;
32-
$footer-text-color: #c2c2c2;
32+
$footer-text-color: $white-offset;
3333

3434
// Bootstrap
3535
@import 'bootstrap-variables';
@@ -101,3 +101,10 @@ body:after {
101101
min-height: 90vh;
102102
background-size: 500px 500px;
103103
}
104+
.grid::before {
105+
content: "";
106+
position: absolute;
107+
inset: 0;
108+
background: linear-gradient(to bottom, transparent 75%, $green1 100%);
109+
pointer-events: none;
110+
}

0 commit comments

Comments
 (0)