46193ab5fe
The primary license of the project is changing to: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later with some specific files to be licensed under the one of two licenses: CC0-1.0 LGPL-3.0-or-later This commit is one of the many steps to relicense the entire codebase. Documentation granting permission for this relicensing (from all past contributors who hold copyrights) is on file with Software Freedom Conservancy, Inc.
43 lines
804 B
SCSS
43 lines
804 B
SCSS
/* License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later */
|
|
@import 'mixins';
|
|
|
|
.pageTabs {
|
|
position: absolute;
|
|
bottom: -4px;
|
|
right: 10px;
|
|
width: 100%;
|
|
}
|
|
.pageTabs a {
|
|
color: white;
|
|
float: right;
|
|
background: $sky;
|
|
padding: 10px 14px 14px 14px;
|
|
margin: 0 8px;
|
|
line-height: 1;
|
|
@include border-radius(4px 4px 0 0);
|
|
font-weight: bold;
|
|
@include transition(transform 0.1s ease-out);
|
|
@include transform(translateY(2px));
|
|
}
|
|
.pageTabs a:hover {
|
|
@include transform(translateY(0px));
|
|
}
|
|
.pageTabs a.is-active {
|
|
background: darken($sky, 20);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.pageTabs--top {
|
|
@extend .pageTabs;
|
|
top: -35px;
|
|
bottom: initial;
|
|
}
|
|
|
|
.pageTabs--event {
|
|
max-width: 500px;
|
|
@extend .pageTabs;
|
|
@include transform(translateY(3px));
|
|
&:before {
|
|
display: none;
|
|
}
|
|
}
|