Skip to content

Commit ebaed94

Browse files
committed
Fix colors
1 parent 7d94dc2 commit ebaed94

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

css/website.css

+3
Original file line numberDiff line numberDiff line change
@@ -1023,6 +1023,9 @@ html ::selection {
10231023
width: 33%; } }
10241024

10251025
.element {
1026+
background-image: linear-gradient(#ffe4db, #fff);
1027+
background-repeat: no-repeat;
1028+
background-size: 100% 4rem;
10261029
border-top: 2px solid #ff470f;
10271030
overflow: hidden;
10281031
padding-bottom: 3rem;

sass/element.sass

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
.element
2+
background-image: linear-gradient($primary-light, #fff)
3+
background-repeat: no-repeat
4+
background-size: 100% 4rem
25
border-top: 2px solid $primary
36
overflow: hidden
47
padding-bottom: 3rem

sass/variables.sass

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $alpha: $orange
2525
$alpha-invert: $orange-invert
2626

2727
$orange-dark: hsl(14, 100%, 33%)
28-
$orange-light: hsl(14, 100%, 98%)
28+
$orange-light: hsl(14, 100%, 93%)
2929

3030
$turquoise-dark: hsl(171, 100%, 21%)
3131
$turquoise-light: hsl(171, 100%, 96%)

0 commit comments

Comments
 (0)