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.
38 lines
844 B
SCSS
38 lines
844 B
SCSS
/* License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later */
|
|
@import 'mixins';
|
|
@import 'components/page_tabs';
|
|
@import 'components/tags';
|
|
@import 'common/fundraisers';
|
|
|
|
.donorProfileHeader {
|
|
background: lighten($grey, 40);
|
|
padding: 12px 15px;
|
|
border-bottom: 1px solid rgba(black, 0.1);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.donorProfileHeader td:first-of-type {
|
|
width: 110px;
|
|
}
|
|
.donorProfileHeader .pageTabs {
|
|
bottom: -12px;
|
|
}
|
|
.donorProfileHeader-photo {
|
|
background-color: white;
|
|
height: 100px;
|
|
width: 100px;
|
|
@include opacity(0.9);
|
|
border: 2px solid white;
|
|
display: block;
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-image: url('/logos/cc-logo-blue.svg');
|
|
}
|
|
|
|
@media screen and (max-width: 550px) {
|
|
.hideWhenMobile {
|
|
display: none;
|
|
}
|
|
}
|