Skip to content

Commit 92f4ad2

Browse files
Initial conversion to white scheme for the events display.
Button to be further defined.
1 parent 178f4c3 commit 92f4ad2

File tree

4 files changed

+33
-10
lines changed

4 files changed

+33
-10
lines changed

_sass/buttons.scss

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,19 @@
1111
background: $button-background-hover;
1212
border: $button-border-hover;
1313
}
14+
}
15+
16+
.button-minimal {
17+
font-size: 1.5em;
18+
font-family: 'Playfair Display', serif;
19+
//background: $button-background;
20+
color: $black;
21+
//border: $button-border;
22+
min-width: 30%;
23+
transition: all 0.5s ease-in-out;
24+
&:hover {
25+
color: $button-text-hover;
26+
background: $button-background-hover;
27+
border: $button-border-hover;
28+
}
1429
}

_sass/style.scss

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -314,16 +314,17 @@ a {
314314
}
315315

316316
.upcoming-divider {
317-
border-bottom: rgba(127, 160, 194, 0.35) 1px solid;
318-
width: 20%;
319-
margin: 10% auto 10%;
317+
border-bottom: rgba(127, 160, 194, 0.05) 1px solid;
318+
width: 30%;
319+
margin: 0.25em 0;
320320
}
321321

322322
.upcoming__col {
323-
background: rgba(0, 0, 0, 0.7);
323+
//background: rgba(0, 0, 0, 0.7);
324+
background: $bright-white;
324325
border-radius: 5px;
325326
border: #000000 1px solid;
326-
box-shadow: rgba(0, 0, 0, 0.76) 5px 5px 5px 0;
327+
//box-shadow: rgba(0, 0, 0, 0.76) 5px 5px 5px 0;
327328
min-height: 100%;
328329
margin-top: 1em;
329330
}
@@ -351,21 +352,23 @@ a {
351352
//}
352353

353354
.upcoming__event-title {
354-
@extend .title-light;
355+
@extend .title;
356+
color: $black;
355357
font-size: 2em;
356358
margin-top: 0.5em;
357359
margin-bottom: 0.1em;
358360
}
359361

360362
.upcoming__event-subtitle {
361363
@extend .subtitle;
364+
color: $black;
362365
font-size: 1.25em;
363366
margin-bottom: 0.5em;
364367
}
365368

366369
.upcoming__paragraph {
367370
@extend .subtitle;
368-
color: $light-blue;
371+
color: $black;
369372
margin-bottom: 0.25em;
370373
}
371374

_sass/typography.scss

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,17 @@
137137
border-radius: 0 5px 5px 5px;
138138
}
139139

140+
.title {
141+
font-family: 'Encode Sans Expanded', sans-serif;
142+
}
143+
140144
.title-dark {
141-
font-family: 'Encode Sans Expanded', sans-serif;
145+
@extend .title;
142146
color: $title-dark;
143147
}
144148

145149
.title-light {
146-
font-family: 'Encode Sans Expanded', sans-serif;
150+
@extend .title;
147151
color: $title-light;
148152
}
149153

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ <h2 class="upcoming__event-subtitle"> {{ post.subtitle }}</h2>
7575
<div class="col-6 no-padding-x">
7676
<div class="row">
7777
<div class="col-12 no-padding-x">
78+
<hr class="upcoming-divider">
7879
<p class="upcoming__paragraph">
7980
<i class="upcoming__icon fas fa-map-marker-alt"></i>{{ host_sponsor.address }}
8081
</p>
@@ -90,7 +91,7 @@ <h2 class="upcoming__event-subtitle"> {{ post.subtitle }}</h2>
9091
</div>
9192
<div class="upcoming__link-col col-6">
9293
<a class="upcoming__link" href="{{ post.url }}">
93-
<button class="button-standard btn btn-lg">
94+
<button class="button-minimal btn btn-lg">
9495
Learn More
9596
</button>
9697
</a>

0 commit comments

Comments
 (0)