31 lines
555 B
SCSS
31 lines
555 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: 24px;
|
|
padding: 8px;
|
|
line-height: 1em;
|
|
text-shadow: 0.15vw 0px 0px white;
|
|
transition: text-shadow 0.1s ease;
|
|
border: 12px solid black;
|
|
border-top: 0;
|
|
border-left: 0;
|
|
|
|
&:hover {
|
|
text-shadow: 0.3vw 0px 0px var(--accent);
|
|
}
|
|
|
|
@media screen and (min-width: 1200px) {
|
|
font-size: 32px;
|
|
padding: 12px;
|
|
}
|
|
}
|