feat: add new website design and tech stack

This commit is contained in:
Stefan Imhoff
2022-02-08 19:46:50 +01:00
parent f76fd39fee
commit 165152beba
495 changed files with 16157 additions and 361 deletions

View File

@@ -0,0 +1,42 @@
/** Home Link */
.home-link {
align-self: center;
grid-column: 1;
justify-self: center;
transition-duration: var(--transition-duration-5);
transition-property: transform;
transition-timing-function: ease-in-out;
&:hover,
&:focus {
transform: scale(1.25);
}
}
.home-link-button {
align-items: center;
background: transparent;
border: 0;
cursor: pointer;
display: flex;
font-size: 0;
height: 40px;
justify-content: center;
width: 40px;
}
.home-link-spacer {
align-self: center;
grid-column: 1;
height: 40px;
justify-self: center;
margin-inline-end: 15px;
width: 40px;
}
.home-link-icon {
fill: var(--color-fg);
font-size: 20px;
height: 20px;
width: 20px;
}