Files
pathfinder/sass/layout/_sticky_panel.scss
Mark Friedrich 0c3d57e833 - BC Break: Required _PHP_ version changed >=7.1>=7.2
- NEW "plugin API" for custom UI modules, closed #913
- NEW live "Killstream" for killboard module, closed #909
- NEW "custom layout" UI settings, closed #470
2020-02-01 12:40:17 +01:00

41 lines
573 B
SCSS

.pf-landing-sticky-panel{
position: fixed;
min-width: 65px;
border-radius: 5px;
padding: 8px 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.4);
text-shadow: #000000b8 0 1px 1px; // improve text readability
z-index: 100; // over "gallery slider"
background: {
color: rgba(43, 43, 43, 0.75);
}
h4{
margin: 5px 0 10px 0;
}
ul{
margin-bottom: 0;
margin-left: 25px;
}
ul + h4{
margin-top: 10px;
}
&--top{
top: 50px;
}
&--bottom{
bottom: 10px;
}
&--left{
left: 10px;
}
&--right{
right: 10px;
}
}