Update team page
BIN
app/assets/images/team/akira.webp
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
app/assets/images/team/ashley.webp
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
app/assets/images/team/dan.webp
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
app/assets/images/team/jack.webp
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
app/assets/images/team/julie.webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
app/assets/images/team/kara.webp
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
app/assets/images/team/nelson.webp
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
app/assets/images/team/peter.webp
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
app/assets/images/team/susan.webp
Normal file
|
After Width: | Height: | Size: 16 KiB |
|
|
@ -7,6 +7,7 @@ $primary: #0B8D9C;
|
|||
$primary-lighter: lighten($primary, 30%);
|
||||
$primary-dark: darken($primary, 15%);
|
||||
$primary-darker: darken($primary, 30%);
|
||||
$highlight: #6EC4D0;
|
||||
|
||||
$secondary: #C93148;
|
||||
$secondary-lighter: darken($secondary, 30%);
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
.band {
|
||||
height: 1em;
|
||||
height: 3em;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
@import "colors";
|
||||
|
||||
.grid-container {
|
||||
display: grid;
|
||||
}
|
||||
|
|
@ -16,6 +18,13 @@
|
|||
grid-auto-columns: 1fr;
|
||||
}
|
||||
|
||||
.grid-item-image {
|
||||
height: auto;
|
||||
width: 300px;
|
||||
padding: 20px;
|
||||
background-color: $highlight;
|
||||
}
|
||||
|
||||
@media(min-width: 992px){
|
||||
.grid-item__title {
|
||||
min-height: 4em;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,17 @@
|
|||
.nav, .nav-item, .dropdown-item {
|
||||
font-family: 'League Spartan', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
.bold {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.spartan {
|
||||
font-family: 'League Spartan', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
@extend .bold;
|
||||
}
|
||||
|
||||
.nav, .nav-item, .dropdown-item {
|
||||
@extend .spartan;
|
||||
}
|
||||
|
||||
|
||||
.hero-text {
|
||||
font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
font-weight: 500;
|
||||
|
|
|
|||