24 lines
494 B
SCSS
24 lines
494 B
SCSS
#org-div-home-and-up {
|
|
position: absolute;
|
|
right: 0;
|
|
z-index: 100;
|
|
padding: 10px;
|
|
|
|
// Large Screens
|
|
@media all and (min-width: $content-max-width+$toc-width) {
|
|
right: auto;
|
|
width: $content-max-width+$toc-width;
|
|
text-align: right;
|
|
}
|
|
|
|
// Small screens
|
|
@media (max-width: 768px) {
|
|
position: fixed;
|
|
padding: 1em;
|
|
color: $color-primary-background;
|
|
a {
|
|
color: $color-text-invert;
|
|
}
|
|
}
|
|
}
|