Header+Footer: further implement new spec

This commit is contained in:
rektdeckard
2020-10-04 00:59:35 -04:00
parent fd70654312
commit 2870f20ddf
6 changed files with 291 additions and 290 deletions

View File

@@ -59,6 +59,7 @@ button.main-button {
transition: all 0.2s ease;
cursor: pointer;
user-select: none;
margin: 0 24px 24px 0;
}
button.main-button:active {
@@ -71,10 +72,20 @@ button.main-button:focus {
outline: none;
}
/* button.main-button:not(:last-child) {
margin: 0 24px 24px 0;
} */
button.main-button svg {
margin-right: 12px;
}
.button-container {
display: flex;
flex-wrap: wrap;
/* gap: 24px; */
}
a.main-link {
text-decoration: none;
position: relative;
@@ -94,3 +105,44 @@ a.main-link:after {
a.main-link:hover:after {
width: 0%;
}
.links {
display: flex;
flex-flow: column wrap;
align-content: flex-start;
align-items: flex-start;
justify-content: center;
column-gap: 72px;
margin: 32px 0 64px;
max-height: 144px;
}
.links > div {
margin: 0 0 24px 0;
display: flex;
align-items: center;
}
.links svg {
margin-right: 12px;
}
a.nav-link {
text-decoration: none;
position: relative;
color: black;
}
a.nav-link:after {
content: "";
position: absolute;
bottom: -2px;
left: 0;
width: 0%;
border-bottom: 1px solid black;
transition: 0.2s;
}
a.nav-link:hover:after {
width: 100%;
}