Skip to content

Commit dfb891e

Browse files
authored
1 parent 61df10b commit dfb891e

File tree

12 files changed

+33
-29
lines changed

12 files changed

+33
-29
lines changed

assets/scss/bootstrap/_variables.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ $sizes: map-merge(
168168
//
169169
// Settings for the `<body>` element.
170170

171-
$body-bg: $white !default;
172-
$body-color: $gray-900 !default;
171+
$body-bg: $green1 !default;
172+
$body-color: $white !default;
173173

174174

175175
// Links

assets/scss/components/_content.scss

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
font-weight: bold;
3434
line-height: 1.4;
3535
margin-top: 30px;
36-
color: $primary;
3736
}
3837
h3 {
3938
font-family: $font-family-base;
@@ -64,30 +63,33 @@
6463
}
6564
hr {
6665
border: none;
67-
border-bottom: 1px solid $white-offset;
66+
border-bottom: 1px solid $green3;
6867
}
6968
table {
7069
width: 100%;
71-
border-bottom: 1px solid $white-offset;
70+
border-bottom: 1px solid $green3;
7271
margin-top: 30px;
7372
margin-bottom: 30px;
7473
th,
7574
td {
7675
padding: 5px;
7776
vertical-align: middle;
78-
border-top: 1px solid $white-offset;
77+
border-top: 1px solid $green3;
7978
&:last-child {
8079
text-align: end;
8180
}
8281
}
82+
tr:nth-child(even) {
83+
background-color: $green2;
84+
}
8385
thead th {
8486
vertical-align: bottom;
85-
border-bottom: 1px solid $white-offset;
87+
border-bottom: 1px solid $green3;
8688
text-align: left;
8789
font-weight: bold;
8890
}
8991
tbody + tbody {
90-
border-top: 1px solid $white-offset;
92+
border-top: 1px solid $green3;
9193
}
9294
}
9395
blockquote {

assets/scss/components/_feature.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
.feature {
22
height: 100%;
3-
border: 1px solid $white-offset;
43
border-radius: 8px;
54
padding: 20px;
6-
background-color: #ffffff;
5+
background-color: $green3;
76
display: flex;
87
align-items: center;
98
flex-direction: column;

assets/scss/components/_hamburger.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
.hamburger-inner,
1313
.hamburger-inner::before,
1414
.hamburger-inner::after {
15-
background: $primary;
15+
background: $white;
1616
}
1717
.hamburger-inner::after {
1818
width: 18px;

assets/scss/components/_header.scss

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
.header {
2-
color: $primary;
3-
background-color: #ffffff;
2+
background-color: $green3;
43
display: flex;
54
justify-content: space-between;
65
align-items: center;
7-
// box-shadow: 0 1px 15px rgba(50, 50, 93, 0.2);
8-
border-bottom: 1px solid $white-offset;
6+
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
97
padding: 10px 0px;
108
.container {
119
display: flex;

assets/scss/components/_intro.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
padding-bottom: 140px;
1111
}
1212
h1 {
13-
color: $black;
1413
font-size: 42px;
1514
font-weight: bold;
1615
line-height: 1.2;
@@ -27,7 +26,6 @@
2726
font-size: 1.2rem;
2827
line-height: 1.4;
2928
margin-bottom: 30px;
30-
color: $black;
3129
font-family: $font-family-base;
3230
}
3331
p {

assets/scss/components/_logo.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
display: flex;
1111
align-items: center;
1212
span {
13-
color: $black;
13+
color: $white;
1414
margin-left: 4px;
1515
font-family: $font-family-heading;
1616
font-size: 24px;

assets/scss/components/_main-menu.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
display: inline-block;
1616
font-weight: normal;
1717
text-decoration: none;
18-
color: $primary;
18+
color: $white;
1919
&:hover {
2020
text-decoration: underline;
2121
}

assets/scss/components/_strip.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
background-color: white;
77
}
88
.strip-grey {
9-
background-color: $white-offset;
9+
background-color: $green2;
1010
}
1111
.strip-diagonal {
1212
transform: skewY(5deg);

assets/scss/components/_title.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.title {
2-
color: $black;
32
font-size: 48px;
43
line-height: 1.2;
54
@include media-breakpoint-up(lg) {

0 commit comments

Comments
 (0)