copyleftconf-website/static/scss/custom.scss

652 lines
9.7 KiB
SCSS
Raw Normal View History

html {
// Quick hack to make a footer not-on-the-bottom look better.
background: $background-filter;
}
body {
padding-top: 50px;
position: relative;
font-weight: 300; // Not overridable in bootstrap at the moment.
/*background: url("../images/website-background.svg");
background-size: cover;
background-repeat: no-repeat;*/
}
.chunkfive {
font-family: ChunkFivePrint, Impact, sans-serif;
}
// Not overridable in bootstrap at the moment
.dropdown-menu >li >a {
font-weight: 300;
}
// Not overridable in bootstrap at the moment.
strong {
font-weight: 500;
}
section {
padding: 20px 0px;
}
.modal form {
margin-bottom: 0px;
}
2017-08-13 02:11:38 +00:00
footer {
2017-08-13 02:50:09 +00:00
padding-top: 40px;
2017-08-13 02:11:38 +00:00
padding-bottom: 20px;
2018-07-01 17:55:57 +00:00
//text-shadow: 0px 0px 0.5px lighten($logo-sky-blue, 0.1);
//color: white;
}
.ftr-wrapper {
background-image: linear-gradient(transparent, $background-filter, $background-filter, $background-filter);
//background-color: black;
}
2017-08-13 02:11:38 +00:00
p.login-signup {
margin-top: 20px;
}
.feature-columns {
@include make-row();
> div {
i.fa {
margin-bottom: 0.2em;
}
@include make-sm-column(4);
2017-06-07 22:01:31 +00:00
/*.text-center;
margin: 2em 0;*/
}
}
2016-03-17 18:45:40 +00:00
body.reviews.review-list .review-list,
body.reviews.voting-status .voting-status,
body.reviews.review-results .review-results {
z-index: 2; // Place active items above their siblings for proper border styling
color: $list-group-active-color;
background-color: $list-group-active-bg;
border-color: $list-group-active-border;
2016-03-17 18:45:40 +00:00
}
2016-03-17 18:59:46 +00:00
body.reviews.voting-status {
&.positive a.positive,
&.negative a.negative,
&.indifferent a.indifferent,
&.controversial a.controversial,
&.too_few a.too_few {
z-index: 2;
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
outline: 0;
background-image: none;
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
}
#accountLogOutForm {
display: none;
}
.sponsor-list h3 {
margin-top: 3em;
}
.sponsor-list > div {
margin: 10px 0;
}
2017-08-12 23:37:14 +00:00
2017-08-13 01:48:08 +00:00
body.auth .panel-heading .panel-title span.pull-right {
margin: 0 auto;
}
2017-08-12 23:37:14 +00:00
.home {
margin: 0;
padding-top: $navbar-height - $navbar-padding-vertical - 8;
}
.home#content_body {
margin: 0;
padding: 0;
}
#content_body {
2018-07-01 17:55:57 +00:00
//background-color: $background-filter-transparent;
//box-shadow: 0px 0px 2em $background-filter; //, inset 0px -5px 1em rgba(0, 0, 0, 0.8);
}
.hidden-accessible {
border:0 none;
clip:rect(0px,0px,0px,0px);
height:1px;
margin:-1px;
overflow:hidden;
padding:0;
position:absolute;
width:1px
}
$homepage-block-min-height: 480px;
2019-06-09 22:39:04 +00:00
$homepage-block-smaller-min-height: 360px;
2017-08-12 23:37:14 +00:00
.homepage-block {
margin-top: 0;
margin-bottom: 0;
min-height: $homepage-block-min-height;
2017-08-12 23:37:14 +00:00
position: relative;
2017-08-13 00:57:25 +00:00
box-shadow: $box-shadow;
z-index: 3;
2017-08-16 04:15:01 +00:00
2019-06-09 22:08:26 +00:00
&.shallow {
padding-top: 12px;
2019-06-09 22:30:20 +00:00
padding-bottom: 12px;
min-height: 0px;
2019-06-09 22:08:26 +00:00
}
2019-06-09 22:39:04 +00:00
&.smaller {
min-height: $homepage-block-smaller-min-height;
}
2017-08-16 04:15:01 +00:00
.sponsor {
2017-08-30 23:50:28 +00:00
$sponsor-height: 150px;
2017-08-16 04:15:01 +00:00
@include make-xs-column(6);
@include make-sm-column(4);
@include make-md-column(3);
max-width: 600px;
2017-08-30 23:50:28 +00:00
height: $sponsor-height;
.logo-alignment {
max-width: 300px;
width: 100%;
height: 100%;
// Center the icon horizontally and vertically
text-align: center;
line-height: ($sponsor-height - 5px);
vertical-align: middle;
a img {
max-width: 100%;
max-height: 100%;
2017-09-28 00:44:07 +00:00
width: auto;
height: auto;
2017-08-30 23:50:28 +00:00
}
}
2017-08-16 04:15:01 +00:00
}
2017-10-15 16:01:02 +00:00
.speaker {
@include make-xs-column(6);
@include make-sm-column(4);
@include make-md-column(3);
max-width: 600px;
min-height: 22em;
margin-bottom: 2em;
text-align: center;
vertical-align: middle;
.image-alignment {
width: 80%;
height: 80%;
margin: auto auto;
// Center the icon horizontally and vertically
}
}
.speaker-list {
margin-top: 2em;
}
2017-08-12 23:37:14 +00:00
}
2017-08-16 04:15:01 +00:00
.homepage-block-content {
min-height: ($homepage-block-min-height - 80px);
}
2019-06-09 21:09:15 +00:00
.homepage-block-content-cloudsep {
2019-06-09 22:39:04 +00:00
min-height: ($homepage-block-smaller-min-height - 40px);
2019-06-09 21:09:15 +00:00
}
.homepage-block-bloop {
2019-06-09 22:39:04 +00:00
min-height: 40px;
2019-06-09 21:09:15 +00:00
}
2019-06-09 23:41:43 +00:00
.homepage-callout {
@extend .col-xs-12;
@extend .col-sm-6;
@extend .col-md-4;
.callout-image {
position: relative;
width: 95%;
min-height: 240px;
margin: 2%;
padding: 5%;
color: white;
.txt {
z-index: 2;
position: relative;
}
.filter {
@extend .fill;
z-index: -1;
background-color: rgba(0,0,0,0.7);
}
.bg {
@extend .fill;
z-index: -2;
}
}
2019-06-15 18:09:30 +00:00
a {
color: $logo-sky-blue;
}
2019-06-09 23:41:43 +00:00
}
2019-06-09 21:09:15 +00:00
/* ??? */
.homepage-block-footer {
}
2017-08-12 23:37:14 +00:00
.homepage-block.light {
2017-08-13 00:57:25 +00:00
background-color: $background-filter;
z-index: 2;
}
.homepage-block.white {
background-color: white;
z-index: 1;
2017-08-12 23:37:14 +00:00
}
.homepage-block-bg {
top: 0;
bottom: 0;
width: 100%;
2017-08-13 00:57:25 +00:00
height: 100%;
2017-08-12 23:37:14 +00:00
position: absolute;
background-size: cover;
background-position: center;
2018-07-02 04:23:06 +00:00
opacity: 0.3;
2017-08-12 23:37:14 +00:00
background-blend-mode: multiply;
2017-08-13 00:57:25 +00:00
z-index: -9999;
box-shadow: $box-shadow;
2017-08-12 23:37:14 +00:00
}
2018-07-02 04:23:06 +00:00
.homepage-background-opacity {
top: 0;
bottom: 0;
width: 100%;
height: 100%;
position: absolute;
opacity: 0.7;
z-index: -9999;
background-blend-mode: multiply;
}
2017-08-12 23:37:14 +00:00
.homepage-block.dark {
2017-08-13 00:57:25 +00:00
background: $gray-base;
2017-08-12 23:37:14 +00:00
color: white;
2019-06-15 21:33:16 +00:00
//text-shadow: 1px 1px $gray-dark;
a:not(.btn) {
color: lighten($brand-primary, 20%);
&:hover,
&:focus,
&:active {
color: lighten($brand-primary, 15%);
}
}
2017-08-12 23:37:14 +00:00
}
2017-08-13 00:57:25 +00:00
.navbar {
box-shadow: $box-shadow;
}
2017-08-13 01:52:36 +00:00
.navbar ul.navbar-nav > li > a,
.navbar-header a.navbar-brand {
&:active,
&:focus,
&:hover {
background-color: darken($navbar-default-bg, 15%);
}
}
2017-08-13 02:02:32 +00:00
.tight-headings {
h1, h2, h3, h4, h5, h6 {
margin: 0.05em;
2017-08-13 02:02:32 +00:00
}
}
2017-08-13 01:52:36 +00:00
2017-08-13 15:01:09 +00:00
.btn-shadow {
box-shadow: 1px 1px 5px $gray-dark;
}
2017-08-13 01:52:36 +00:00
2017-08-13 02:43:28 +00:00
.hills {
2017-08-13 01:52:36 +00:00
background-size: 100%;
background-position: bottom;
background-repeat: no-repeat;
width: 50%;
height: 100%;
position: absolute;
bottom: 0;
right: 0;
2018-06-30 20:06:49 +00:00
z-index: -7999;
2017-08-13 02:43:28 +00:00
&.main {
}
&.footer {
}
2017-08-13 01:52:36 +00:00
}
2018-06-30 20:06:49 +00:00
.hphbg {
2018-07-01 17:55:57 +00:00
background-color: $logo-sky-blue;
2018-06-30 20:06:49 +00:00
opacity: 1;
/* will be "on top", if browser supports it */
background-size: 100%;
background-position: bottom;
top: 0;
bottom: 0;
background-repeat: no-repeat;
width: 100%;
height: 100%;
}
2019-06-09 21:09:15 +00:00
.grey-gradient {
2018-06-30 20:06:49 +00:00
background-size: 100%;
background-position: bottom;
background-repeat: no-repeat;
width: 100%;
height: 50%;
position: absolute;
bottom: 0;
right: 0;
z-index: -9999;
2018-07-01 17:55:57 +00:00
//background-color: $logo-sky-blue;
2018-06-30 20:06:49 +00:00
background-image: linear-gradient(transparent, black);
2018-07-01 17:55:57 +00:00
&.homepage-footer {
height: 10%;
}
2019-06-09 22:30:20 +00:00
&.main {
height: 80%;
}
2018-06-30 20:06:49 +00:00
}
.clouds {
background-position: bottom;
background-repeat: repeat-x;
width: 100%;
height: 100%;
position: absolute;
top: 0;
//right: 0;
z-index: -9000;
&.main {
}
2018-07-01 17:55:57 +00:00
&.ftr {
opacity: 0.1;
}
&.hdr {
background-position: top;
opacity: 0.6;
}
2018-06-30 20:06:49 +00:00
}
2017-08-14 00:21:02 +00:00
.circle {
position: relative;
border-radius: 100%;
overflow: hidden;
width: 100%;
2017-08-14 00:23:19 +00:00
box-shadow: 0px 0px 1em $gray-dark;
2018-07-01 17:55:57 +00:00
&.border {
border: 0.05em solid black;
}
2017-08-14 00:21:02 +00:00
}
.circle:before {
content: "";
display: block;
padding-top: 100%;
}
.fill {
position: absolute;
width: 100%;
height: 100%;
top: 0;
bottom: 0;
left: 0;
right:0;
background-size: cover;
background-position: center;
}
.squish {
position: relative;
width: 70%;
margin: auto;
margin-top: 5%;
margin-bottom: 5%;
}
.btn-group + p {
margin-top: 1em;
}
2017-08-13 20:24:13 +00:00
.website-background {
2018-07-01 17:55:57 +00:00
/*background-image: url("../images/website-background.svg");*/
2017-08-13 20:24:13 +00:00
}
2018-06-30 20:06:49 +00:00
.homepage-header-background {
}
2017-08-13 20:24:13 +00:00
.sponsor-list a img {
2017-08-31 00:59:48 +00:00
width: 100%;
max-width: 300px;
2017-08-13 20:24:13 +00:00
}
.sponsor-list {
margin-top: 1em;
}
.full-width {
width: 100%;
}
2017-08-14 00:15:42 +00:00
body.about {
h2, h3, h4 {
clear: both;
}
.team-headshot {
height: 150px;
width: 150px;
float: left;
margin-right: 1em;
margin-top: 0.25em;
margin-bottom: 1em;
}
}
2017-08-14 00:27:23 +00:00
body.news {
h2, .h2 {
font-size: 28px;
}
}
body:not(.home) {
#background-filter a:not(.btn) {
text-decoration: underline;
}
2017-08-15 01:51:27 +00:00
}
2017-08-16 03:48:22 +00:00
span.date {
font-weight: 900;
}
.email-signup-panel {
max-width: 600px;
}
.logo {
2019-06-09 22:08:26 +00:00
&.left {
float: left !important;
}
&.right {
float: right !important;
}
&.small {
2017-08-16 03:48:22 +00:00
width: 80px;
height: 80px;
2019-06-09 22:08:26 +00:00
margin: 0 1em 2em 2em;
.circle {
width: 80px;
height: 80px;
}
}
&.large {
$sz: $jumbotron-heading-font-size * 2;
width: $sz;
height: $sz;
.circle {
width: $sz;
height: $sz;
}
2017-08-16 03:48:22 +00:00
}
}
footer .footer-copy {
margin-left: 1em;
2019-06-09 21:09:15 +00:00
2018-09-27 16:09:30 +00:00
p {
font-size: 16px;
}
2017-08-16 03:48:22 +00:00
}
@media (max-width: 1200px) and (min-width: 992px) {
.email-signup-panel input.btn {
margin-top: 1em;
}
}
@media (max-width: 992px) {
.photo-attribution {
margin-top: 1em;
text-align: left;
}
.email-signup-panel {
margin-top: 2em;
}
}
@media (max-width: 768px) {
.navbar-nav.pull-right {
float: left !important;
}
2017-08-18 05:58:31 +00:00
}
@media (max-width: 992px) and (min-width: 768px) {
.nav > li > a {
2017-08-21 01:06:21 +00:00
padding: 15px 7px;
2017-08-18 05:58:31 +00:00
}
2017-08-16 03:48:22 +00:00
}
@media (max-width: 550px) {
}
@media (min-width: 992px) {
.email-signup-panel {
margin-top: 22px;
}
}
2017-08-17 17:14:41 +00:00
2019-06-09 21:09:15 +00:00
.homepage-title {
font-weight: 600;
}
2017-08-17 17:14:41 +00:00
.homepage-subtitle {
2019-06-09 21:09:15 +00:00
line-height: 1.25;
font-weight: 300;
2017-08-17 17:14:41 +00:00
}
.navbar-toggle {
background-color: $gray-lighter;
font-size: 10px;
}
2017-08-18 18:26:33 +00:00
body.login #content_body .row > div.col-md-9 > p + div.container {
padding-left: 0px;
}
2019-06-09 23:41:43 +00:00
.homepage-vertical-space {
height: 20px;
}
.wrap-break {
display: inline-block;
}
2019-09-29 19:36:47 +00:00
.speakers_ {
text-align: center;
}
.speaker_ {
font-size: x-large;
margin-bottom: 0.5em;
&.headline {
font-size: xx-large;
}
}
.speaker-description {
font-size: smaller;
display: block;
font-variant: small-caps;
}