Skip to content

Commit d9a7564

Browse files
committed
First attempt on new design
1 parent d9c154c commit d9a7564

File tree

5 files changed

+8952
-4
lines changed

5 files changed

+8952
-4
lines changed

_sass/_additions.scss

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,3 +144,18 @@ div.former-members li {
144144
margin: 0 auto;
145145
}
146146

147+
/* Reskin to match 2025 business card and flyer */
148+
h1, h2, h3, h4, h5, h6 {
149+
color: $headings-color;
150+
}
151+
152+
.site-footer, .footer-col-wrapper {
153+
background-color: $footer-background-color;
154+
}
155+
156+
.site-footer {
157+
background-image: url('/images/tools-square.svg');
158+
background-repeat: repeat-x;
159+
background-position: center center;
160+
border-top: none;
161+
}

_sass/_layout.scss

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,8 @@
268268
/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5a7999', endColorstr='#344659',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
269269
background-repeat: no-repeat;
270270
background-position: center center;
271-
background-image: url('/images/garden_cropped_scaled.jpg');
271+
background-color: $hero-background-color;
272+
background-image: url('/images/hero-banner.svg');
272273
background-size: cover;
273274
height: 350px;
274275
@include media-query($on-laptop) {
@@ -280,8 +281,8 @@
280281
font-family: $title-font-family;
281282
font-size: 80px;
282283
line-height: 350px;
283-
color: white;
284-
text-shadow: 1px 1px 3px #000;
284+
color: $headings-color;
285+
text-shadow: 1px 1px 3px #fff;
285286
padding: 0;
286287
float: left;
287288
position: absolute;

css/main.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,15 @@ $content-width: 1200px;
3030
$on-palm: 600px;
3131
$on-laptop: 800px;
3232

33-
$header-background-color: #272e38;
33+
$header-background-color: #6b2c91; /* #272e38;*/
3434
$header-background-image: url('/images/bg.png');
3535
$header-text-color: #fff;
3636

37+
// Additional variables with reskin to match business cards
38+
$headings-color: $header-background-color;
39+
$footer-background-color: #fff1bb;
40+
$hero-background-color: $footer-background-color;
41+
3742
// Use media queries like this:
3843
// @include media-query($on-palm) {
3944
// .wrapper {

0 commit comments

Comments
 (0)