mirror of
https://github.com/kogakure/website-11ty-kogakure.de.git
synced 2026-02-03 20:25:30 +00:00
feat: add new website design and tech stack
This commit is contained in:
42
src/assets/styles/layout/home-link.css
Normal file
42
src/assets/styles/layout/home-link.css
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user