Louis Hollingworth
ca2f305a0a
Utilities has been added since it is my aim to have all of the staff forms and timezones added to the site
37 lines
507 B
SCSS
37 lines
507 B
SCSS
@use 'colours';
|
|
|
|
.footer {
|
|
width: 100%;
|
|
height: 100px;
|
|
border-top: 1px solid #eaeaea;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.footer a:hover {
|
|
color: #0070f3;
|
|
}
|
|
|
|
.footer a {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-grow: 1;
|
|
color: #eaeaea;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
align-items: center;
|
|
justify-content: center;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.grid {
|
|
width: 90%;
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
}
|