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.
34 lines
932 B
SCSS
34 lines
932 B
SCSS
/* License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later */
|
|
@import 'mixins';
|
|
@import 'components/animations';
|
|
|
|
@include keyframes(popUp) {
|
|
0% { @include transform(translateY(80px)); }
|
|
60% { @include transform(translateY(3px)); }
|
|
100% { @include transform(translateY(5px)); }
|
|
}
|
|
body {
|
|
background: transparent !important;
|
|
}
|
|
.branded-donate-button {
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
@include noselect;
|
|
font-weight: 600;
|
|
color: white !important;
|
|
margin: 0;
|
|
font-size: 32px;
|
|
line-height: 32px;
|
|
padding: 10px 20px;
|
|
@include border-radius(40px);
|
|
@include box-shadow(0 0 5px 2px rgba(black, 0.1));
|
|
}
|
|
.branded-donate-button.is-fixed{
|
|
cursor: pointer;
|
|
font-size: 22px;
|
|
@include transform(translateY(5px));
|
|
@include border-radius(10px 10px 0 0);
|
|
padding: 7px 14px 11px 14px;
|
|
@include box-shadow(0 0 5px 1px rgba(black, 0.1));
|
|
@include animation('popUp 1.2s ease-out forwards');
|
|
}
|