Files
Iris/src/scss/global/_core.scss
2017-06-20 08:29:56 +12:00

341 lines
5.1 KiB
SCSS
Executable File

body,
html {
background: $white;
color: $darkest_grey;
font-family: "Archivo Narrow", Helvetica, Arial, sans-serif;
font-size: 14px;
touch-action: manipulation;
text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}
body {
overflow-y: scroll;
overflow-x: hidden;
&.modal-open {
overflow-y: hidden;
}
@include responsive( $bp_medium ){
&.context-menu-open {
overflow-y: hidden;
}
}
}
main,
footer {
margin-left: 220px;
@include responsive( null, null, $bp_shallow ){
padding-bottom: 60px;
}
@include responsive( $bp_medium ){
margin-left: 0;
}
}
main {
position: relative;
min-height: 100vh;
.content-wrapper {
padding: 40px 40px 50px;
}
a {
color: inherit;
text-decoration: none;
border-bottom: 1px dotted transparent;
cursor: pointer;
&:hover {
border-color: #000000;
}
}
p {
font-size: 18px;
line-height: 1.5em;
white-space: pre-wrap;
}
@include responsive( $bp_medium ){
section.list-wrapper {
padding: 10px 0;
}
}
pre {
padding: 20px;
background: $faint_grey;
white-space: pre-wrap;
word-wrap: break-word;
}
}
h1 {
@include feature_font();
font-weight: 700;
font-size: 2.8rem;
}
h2 {
@include feature_font();
font-size: 2rem;
font-weight: 700;
}
h3 {
font-weight: 100;
font-style: italic;
font-size: 20px;
&.bottom-padding {
padding-bottom: 30px;
}
}
h4 {
font-size: 14px;
margin-bottom: 14px;
text-transform: uppercase;
&.underline {
padding-bottom: 4px;
border-bottom: 1px solid #000000;
}
&:not(:first-child){
padding-top: 40px;
}
}
.placeholder {
display: inline-block;
height: 1.2em;
width: 100px;
max-width: 100%;
background: rgba(150,150,150,0.15);
pointer-events: none !important;
}
h1 .placeholder {
width: 50%;
}
h2 .placeholder,
h3 .placeholder,
h4 .placeholder {
max-width: 50%;
width: 150px;
}
button.placeholder {
border-color: transparent;
height: auto;
}
.list-wrapper .placeholder {
display: block;
width: auto;
margin: 25px 40px;
height: 10px;
@include responsive( $bp_medium ){
margin-left: 20px;
margin-right: 20px;
}
}
.grid-wrapper .placeholder {
height: auto;
&:after {
content: ' ';
display: block;
padding-bottom: 100%;
}
}
.related-artists .list-wrapper .placeholder {
position: relative;
margin: 40px 20px 50px 65px;
&:after {
content: ' ';
display: block;
width: 50px;
height: 50px;
border-radius: 50%;
background: rgba(150,150,150,0.15);
position: absolute;
top: -20px;
left: -65px;
}
}
.no-top-padding { padding-top: 0 !important; }
.no-bottom-padding { padding-bottom: 0 !important; }
.no-right-padding { padding-right: 0 !important; }
.no-left-padding { padding-left: 0 !important; }
.no-top-margin { margin-top: 0 !important; }
.no-bottom-margin { margin-bottom: 0 !important; }
.top-padding { padding-top: 20px; }
.bottom-padding { padding-bottom: 20px; }
.right-padding { padding-right: 40px; }
.left-padding { padding-left: 40px; }
.col {
min-height: 1px;
float: left;
&.w5 { width: 5%; }
&.w10 { width: 10%; }
&.w15 { width: 15%; }
&.w20 { width: 20%; }
&.w25 { width: 25%; }
&.w30 { width: 30%; }
&.w33 { width: 33.3334%; }
&.w35 { width: 35%; }
&.w40 { width: 40%; }
&.w45 { width: 45%; }
&.w50 { width: 50%; }
&.w55 { width: 55%; }
&.w60 { width: 60%; }
&.w65 { width: 65%; }
&.w66 { width: 66.6667%; }
&.w70 { width: 70%; }
&.w75 { width: 75%; }
&.w80 { width: 80%; }
&.w85 { width: 85%; }
&.w90 { width: 90%; }
&.w95 { width: 95%; }
&.w100 { width: 100%; }
}
.pull-left {
float: left;
}
.pull-right {
float: right;
}
.cf {
@include clearfix;
}
.one-liner { @include one_line_text; }
.grey-text { color: $mid_grey !important; }
.red-text { color: $red !important; }
.green-text { color: $green !important; }
.orange-text { color: $orange !important; }
.dark-text { color: $dark_grey !important; }
.centred-text { text-align: center; }
footer {
display: block;
color: $light_grey;
padding-top: 50px;
padding-bottom: 50px;
text-align: center;
}
.details {
list-style-type: none;
color: $mid_grey;
li {
display: inline-block;
&:not(:first-child){
@include bullet();
}
}
}
.flag {
font-size: 12px;
display: inline-block;
padding: 2px 4px;
background: $light_grey;
color: $dark_grey;
&.blue {
background: $blue;
color: #FFFFFF;
}
}
.has-tooltip {
position: relative;
.tooltip {
@include animate();
opacity: 0;
position: absolute;
pointer-events: none;
background: $overlay_dark;
display: block;
max-width: 200px;
padding: 5px;
color: $white;
font-size: 11px;
line-height: 11px;
top: -22px;
left: 1px;
z-index: 97;
&::before {
content: '';
display: block;
width: 6px;
height: 6px;
background: $overlay_dark;
-ms-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
position: absolute;
bottom: -3px;
left: 9px;
}
}
&:hover {
.tooltip {
opacity: 1;
top: -18px;
}
}
}
@include responsive( $bp_medium ){
.right-padding {
padding-right: 20px;
}
.left-padding {
padding-left: 20px;
}
h1 {
font-size: 30px;
}
h2 {
font-size: 24px;
}
h3 {
font-size: 18px;
}
}