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.
49 lines
1.1 KiB
SCSS
49 lines
1.1 KiB
SCSS
/* License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later */
|
|
.browsersIllustration {
|
|
padding: 20px 0;
|
|
display: table;
|
|
width: 100%;
|
|
}
|
|
.browsersIllustration section {
|
|
width: 50%;
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
}
|
|
|
|
.browsersIllustration section.clutteredBrowsers {
|
|
position: relative;
|
|
padding: 0 40px 0 0;
|
|
}
|
|
|
|
.browsersIllustration section.clutteredBrowsers:after {
|
|
position: absolute;
|
|
content: 'OR';
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
color: white;
|
|
background: $oj;
|
|
line-height: 44px;
|
|
width: 44px;
|
|
@include border-radius(50%);
|
|
top: 50%;
|
|
margin-top: -22px;
|
|
right: -22px;
|
|
}
|
|
|
|
.browsersIllustration section.ccBrowser { padding: 0px 0 0px 40px; }
|
|
|
|
@media screen and (max-width: 500px) {
|
|
.browsersIllustration section.clutteredBrowsers:after {
|
|
position: relative;
|
|
display: block;
|
|
margin: 15px auto;
|
|
right: auto;
|
|
}
|
|
.browsersIllustration section.ccBrowser,
|
|
.browsersIllustration section.clutteredBrowsers {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 0;
|
|
}
|
|
}
|