Cleanup. move styles to separate file

This commit is contained in:
Jake
2022-03-04 17:04:59 -07:00
parent 11a7f04979
commit c26df66ef2
4 changed files with 214 additions and 242 deletions

View File

@@ -694,3 +694,43 @@ $placeholder-color: $gray-600;
color: $placeholder-color;
opacity: 1;
}
// Events page
.page-events {
.event-card {
color: $black;
background-color: $gray-050;
box-shadow: 0px 5px 20px 0px $gray-300;
}
a.event-card:hover {
color: $black;
}
.event-hero {
color: $gray-900;
}
.event-save-date {
color: $gray-900;
}
.event-small-gray {
color: $gray-600;
}
#event-hero-image {
height: 100%;
background: url(../img/events/event-hero1-light@2x.png);
background-size: contain;
background-repeat: no-repeat;
}
.icon-date::before {
background: url(../img/events/event-date-light.svg);
}
.icon-location::before {
background: url(../img/events/event-location-light.svg);
}
}