Userstyle for Fallen London that keeps the exit button always on your screen. Smaller button for mobile view.
Fallen London - Sticky Exit Button by Platyn
Details
AuthorPlatyn
LicenseThe Unlicense
Categoryfallenlondon
Created
Updated
Size741 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Fallen London - Sticky Exit Button
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Platyn
==/UserStyle== */
@-moz-document domain("www.fallenlondon.com") {
.buttons.buttons--left {
position: sticky;
bottom: 16px;
z-index: 99;
}
@media only screen and (max-width: 991px) {
.buttons.buttons--left {
bottom: 55px;
}
.buttons--storylet-exit-options span {
font-size: 0;
}
.buttons--storylet-exit-options .fa-arrow-left {
font-size: 14px;
margin-left: 7.15px;
}
}
}