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.
47 lines
809 B
SCSS
47 lines
809 B
SCSS
/* License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later */
|
|
@import 'mixins';
|
|
|
|
$width: 400px; // same as .modal.skinny
|
|
|
|
.donate-popup {
|
|
overflow: visible;
|
|
position: absolute;
|
|
min-width: 290px;
|
|
width: $width;
|
|
max-width: 100%;
|
|
top: 100px;
|
|
left: 50%;
|
|
margin: 0;
|
|
margin-left: -$width / 2;
|
|
background-color: white;
|
|
border: 1px solid #ddd;
|
|
@include border-radius(4px);
|
|
} //.donate-popup
|
|
|
|
.donate-popup.is-embedded {
|
|
margin: 0;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.donate-popup.is-modal .closeButton {
|
|
display: block;
|
|
}
|
|
|
|
.donate-popup.is-embedded .titleRow,
|
|
.donate-popup.is-embedded .closeButton {
|
|
display: none;
|
|
}
|
|
|
|
@media screen and (max-width: 500px) {
|
|
.donate-popup {
|
|
top: 10px;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 400px) {
|
|
.donate-popup {
|
|
left: 0;
|
|
margin-left: 0;
|
|
}
|
|
}
|