pub.solar/_includes/styles/homelink.scss
Benjamin Yule Bädorf e6279896d6
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
v2: initial commit
* Separate german and english language pages
* Add a services page with details per service
* Move hakken dates into the same container as the text
* Introductory text on the homepage
2024-03-06 16:34:00 +01:00

39 lines
676 B
SCSS

.ps-homelink {
position: fixed;
top: 0;
left: 0;
z-index: 100;
pointer-events: all;
color: var(--foreground);
background: white;
text-decoration: none;
text-align: center;
font-weight: 900;
font-size: 1.5rem;
padding: 0.5rem;
line-height: 1em;
text-shadow: 0.1em 0px 0px white;
transition: text-shadow 0.1s ease;
border: 1rem solid black;
border-top: 0;
border-left: 0;
&:hover {
text-shadow: 0.1em 0px 0px var(--accent);
}
@media screen and (min-width: 1200px) {
font-size: 2rem;
padding: 1rem;
}
&_lang {
left: unset;
right: 0;
border: 1rem solid black;
border-top: 0;
border-right: 0;
}
}