mirror of
https://github.com/LaconicNetwork/laconic.com.git
synced 2026-08-07 07:24:06 +00:00
67 lines
1.2 KiB
SCSS
67 lines
1.2 KiB
SCSS
@import '~/css/helpers';
|
|
|
|
.scroll {
|
|
position: fixed;
|
|
z-index: 20;
|
|
bottom: 5%;
|
|
left: tovw(56px, 'default', 16px);
|
|
display: grid;
|
|
align-items: flex-end;
|
|
width: calc(100% - (tovw(56px, 'default', 16px) * 2));
|
|
user-select: none;
|
|
pointer-events: none;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
grid-template-rows: 1fr;
|
|
mix-blend-mode: difference;
|
|
|
|
@media screen and (max-width: 800px) {
|
|
display: none;
|
|
}
|
|
|
|
.flag {
|
|
width: tovw(36px, 'default', 36px);
|
|
height: tovw(20px, 'default', 20px);
|
|
margin: 0 auto 0 tovw(8px, 'default', 6px);
|
|
}
|
|
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
p,
|
|
li {
|
|
font-family: var(--font-dm-mono);
|
|
font-size: tovw(12px, 'default', 11px);
|
|
line-height: 1.7;
|
|
width: 100%;
|
|
margin: 0;
|
|
text-align: right;
|
|
text-transform: uppercase;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
> div {
|
|
&:first-of-type {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-self: flex-start;
|
|
|
|
@media screen and (max-width: 800px) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&:last-of-type {
|
|
text-align: right;
|
|
justify-self: flex-end;
|
|
|
|
span {
|
|
display: inline-block;
|
|
width: tovw(60px, 'default', 55px);
|
|
}
|
|
}
|
|
}
|
|
}
|