2020-01-18 20:46:06 +00:00
|
|
|
@charset "utf-8";
|
|
|
|
|
|
|
|
@import './colors.scss';
|
|
|
|
@import './variables.scss';
|
|
|
|
@import './mixins.scss';
|
|
|
|
@import "../../node_modules/bulma/bulma.sass";
|
2020-04-12 14:25:42 +00:00
|
|
|
// @import '../../node_modules/animate.css/source/_base.css';
|
2020-05-07 00:02:18 +00:00
|
|
|
nav.navbar {
|
|
|
|
padding-left: 5rem;
|
|
|
|
padding-right: 5rem;
|
2020-04-29 23:45:50 +00:00
|
|
|
}
|
2020-04-23 02:16:19 +00:00
|
|
|
.hero-bg{
|
2020-05-02 16:31:22 +00:00
|
|
|
// @include pattern(#c0ebfa, #7FD7F5);
|
2020-05-02 19:39:16 +00:00
|
|
|
// @include pattern(#c1d7df, rgb(183, 236, 253));
|
|
|
|
background-image: url('/images/clouds-bg.svg');
|
|
|
|
background-size: cover;
|
|
|
|
background-color: #fff;
|
|
|
|
// @include linearGradient(#eef6fc, #f8afaf);
|
|
|
|
// background: url('/images/whale.svg') 15% 25% no-repeat, linear-gradient(to bottom, #eef6fc 0%, #f8afaf 100%);
|
|
|
|
// background-size: 250px, auto;
|
|
|
|
// background-position: ;
|
|
|
|
// background-repeat: no-repeat;
|
2020-05-02 16:31:22 +00:00
|
|
|
}
|
|
|
|
.landing-featue-image{
|
2020-05-07 00:02:18 +00:00
|
|
|
max-height: 180px !important;
|
2020-05-02 16:31:22 +00:00
|
|
|
width: auto;
|
|
|
|
object-fit: contain;
|
|
|
|
z-index: 0;
|
2020-01-18 20:46:06 +00:00
|
|
|
}
|
2020-04-29 23:45:50 +00:00
|
|
|
.navbar-menu{
|
|
|
|
&.is-active{
|
|
|
|
// transition: all;
|
|
|
|
// position: relative;
|
|
|
|
// top:0;
|
|
|
|
animation: expand-animation .1s ease-in;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes expand-animation{
|
|
|
|
from{
|
|
|
|
height: 0;
|
|
|
|
transform: scaleY(0);
|
|
|
|
}
|
|
|
|
to{
|
|
|
|
transform: scaleY(1);
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
2020-01-18 20:46:06 +00:00
|
|
|
|
|
|
|
.hero {
|
2020-04-29 23:45:50 +00:00
|
|
|
.navbar.darken {
|
|
|
|
@include linearGradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
|
|
|
|
}
|
|
|
|
// .navbar-item{
|
2020-04-23 19:47:53 +00:00
|
|
|
// color: $primary;
|
|
|
|
// }
|
2020-04-29 23:45:50 +00:00
|
|
|
}
|
|
|
|
.has-inner-shadow-bottom{
|
|
|
|
box-shadow: inset 0px -10px 15px -11px rgba(0,0,0,0.75);
|
|
|
|
}
|
|
|
|
.has-inner-shadow-top{
|
|
|
|
box-shadow: inset 0px 10px 15px -11px rgba(0,0,0,0.75);
|
|
|
|
}
|
2020-04-23 19:47:53 +00:00
|
|
|
.has-shadow-top{
|
|
|
|
box-shadow: 0px 10px 15px -11px rgba(0,0,0,0.75);
|
2020-01-18 20:46:06 +00:00
|
|
|
}
|
2020-01-24 17:30:56 +00:00
|
|
|
$sizeUnit: rem;
|
|
|
|
$marginKey: 'm';
|
|
|
|
$paddingKey: 'p';
|
|
|
|
$separator: '-';
|
|
|
|
$sizes: (
|
2020-04-29 23:45:50 +00:00
|
|
|
('none', 0),
|
|
|
|
('xxs', 0.75),
|
|
|
|
('xs', 0.25),
|
|
|
|
('sm', 0.5),
|
|
|
|
('md', 1),
|
|
|
|
('lg', 2),
|
|
|
|
('xl', 4),
|
|
|
|
('xxl', 8),
|
2020-05-07 00:02:18 +00:00
|
|
|
('diego', 6.25),
|
2020-04-29 23:45:50 +00:00
|
|
|
);
|
|
|
|
$positions: (
|
2020-01-24 17:30:56 +00:00
|
|
|
('t', 'top'),
|
|
|
|
('r', 'right'),
|
|
|
|
('b', 'bottom'),
|
|
|
|
('l', 'left')
|
2020-04-29 23:45:50 +00:00
|
|
|
);
|
2020-01-24 17:30:56 +00:00
|
|
|
|
2020-04-29 23:45:50 +00:00
|
|
|
@function sizeValue($key, $value) {
|
|
|
|
@return if($key == 'none', 0, $value + $sizeUnit);
|
|
|
|
}
|
2020-01-24 17:30:56 +00:00
|
|
|
|
2020-04-29 23:45:50 +00:00
|
|
|
@each $size in $sizes {
|
|
|
|
$sizeKey: nth($size, 1);
|
|
|
|
$sizeValue: nth($size, 2);
|
|
|
|
.#{$marginKey}#{$separator}#{$sizeKey} {
|
2020-01-24 17:30:56 +00:00
|
|
|
margin: sizeValue($sizeKey, $sizeValue);
|
2020-04-29 23:45:50 +00:00
|
|
|
}
|
|
|
|
.#{$paddingKey}#{$separator}#{$sizeKey} {
|
2020-01-24 17:30:56 +00:00
|
|
|
padding: sizeValue($sizeKey, $sizeValue);
|
2020-04-29 23:45:50 +00:00
|
|
|
}
|
|
|
|
@each $position in $positions {
|
2020-01-24 17:30:56 +00:00
|
|
|
$posKey: nth($position, 1);
|
|
|
|
$posValue: nth($position, 2);
|
|
|
|
.#{$marginKey}#{$separator}#{$posKey}#{$separator}#{$sizeKey} {
|
2020-04-29 23:45:50 +00:00
|
|
|
margin-#{$posValue}: sizeValue($sizeKey, $sizeValue);
|
2020-01-24 17:30:56 +00:00
|
|
|
}
|
|
|
|
.#{$paddingKey}#{$separator}#{$posKey}#{$separator}#{$sizeKey} {
|
2020-04-29 23:45:50 +00:00
|
|
|
padding-#{$posValue}: sizeValue($sizeKey, $sizeValue);
|
2020-01-24 17:30:56 +00:00
|
|
|
}
|
2020-04-29 23:45:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.m-t-a{
|
|
|
|
margin-top: auto;
|
2020-01-24 17:30:56 +00:00
|
|
|
}
|
2020-04-25 21:10:06 +00:00
|
|
|
.m-b-a{
|
|
|
|
margin-bottom: auto;
|
|
|
|
}
|
|
|
|
.m-l-a{
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
.m-r-a{
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
2020-04-29 23:45:50 +00:00
|
|
|
|
2020-01-26 22:16:16 +00:00
|
|
|
.sidebar{
|
|
|
|
flex-direction: column;
|
2020-02-09 15:17:11 +00:00
|
|
|
max-width: 5em;
|
|
|
|
width: 5em;
|
|
|
|
height: 100%;
|
|
|
|
border-right: thin #ccc solid;
|
|
|
|
|
|
|
|
}
|
|
|
|
.menu-titles{
|
|
|
|
margin-top: -2em;
|
2020-01-26 22:16:16 +00:00
|
|
|
}
|
|
|
|
.sidebar-menu{
|
|
|
|
position: absolute;
|
2020-02-09 15:17:11 +00:00
|
|
|
bottom: 25px;
|
|
|
|
left: 1em;
|
2020-01-26 22:16:16 +00:00
|
|
|
}
|
|
|
|
.sideway-letter{
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
margin: -.8em auto;
|
|
|
|
}
|
2020-02-09 15:17:11 +00:00
|
|
|
|
2020-04-12 14:25:42 +00:00
|
|
|
.is-fullheight{
|
|
|
|
min-height: calc(100vh - ( #{$navbar-height} ) );
|
2020-05-01 18:32:29 +00:00
|
|
|
// max-height: calc(100vh - ( #{$navbar-height} ) );
|
|
|
|
// height: calc(100vh - ( #{$navbar-height} ) );
|
|
|
|
// .column{
|
|
|
|
// overflow-y: auto;
|
|
|
|
// }
|
2020-02-09 15:17:11 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 23:45:50 +00:00
|
|
|
.is-fullwidth{
|
|
|
|
width: 100vw;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.app-content{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2020-04-12 14:25:42 +00:00
|
|
|
.avatar-badge-image{
|
2020-02-09 15:17:11 +00:00
|
|
|
display: table;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-avatar{
|
|
|
|
padding:2px;
|
|
|
|
border: thin solid #ccc;
|
|
|
|
}
|
|
|
|
.m-auto{
|
|
|
|
margin: auto;
|
|
|
|
}
|
2020-04-12 14:25:42 +00:00
|
|
|
|
|
|
|
.css-loader{
|
|
|
|
display: flex;
|
|
|
|
position: absolute;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
.dot{
|
|
|
|
margin: 5px;
|
|
|
|
width: 2rem;
|
|
|
|
height: 2rem;
|
|
|
|
background: $primary;
|
|
|
|
border-radius: 50%;
|
|
|
|
animation-name: loading-pulse;
|
|
|
|
animation-duration: 2s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
&.delay-1{
|
|
|
|
animation-delay:.3s;
|
|
|
|
}
|
|
|
|
&.delay-2{
|
|
|
|
animation-delay:.6s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes loading-pulse{
|
|
|
|
0%{
|
|
|
|
opacity: .1;
|
|
|
|
transform: scale(.7);
|
|
|
|
}
|
|
|
|
50%{
|
|
|
|
opacity: 1;
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
100%{
|
|
|
|
opacity: .1;
|
|
|
|
transform: scale(.7);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-pointer{
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2020-04-25 21:10:06 +00:00
|
|
|
|
2020-04-12 14:25:42 +00:00
|
|
|
.notifications {
|
|
|
|
width: 15vw;
|
|
|
|
z-index: 100;
|
|
|
|
position: fixed;
|
|
|
|
right: 25px;
|
|
|
|
top: calc(25px + ( #{$navbar-height} ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-fade{
|
|
|
|
animation: notification-fade .2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes notification-fade{
|
|
|
|
0%{
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100%{
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2020-04-14 00:56:04 +00:00
|
|
|
// TODO: Remove this - make generic
|
|
|
|
.flipbook {
|
|
|
|
width: 100%;
|
2020-04-29 23:45:50 +00:00
|
|
|
height: 75vh;
|
|
|
|
overflow-y: visible;
|
|
|
|
}
|
|
|
|
.book-flip-buttons{
|
|
|
|
height: 100%;
|
2020-04-14 00:56:04 +00:00
|
|
|
}
|
2020-04-14 01:40:10 +00:00
|
|
|
.video-strip{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-content:center;
|
2020-04-29 23:45:50 +00:00
|
|
|
max-height: 15vh;
|
2020-04-14 01:40:10 +00:00
|
|
|
}
|
2020-04-29 23:45:50 +00:00
|
|
|
|
2020-04-14 01:40:10 +00:00
|
|
|
video{
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
|
|
|
background-color:rgba(56, 181, 187, 0.19);
|
|
|
|
border-radius: 15px;
|
|
|
|
border: solid 1px rgba(56, 181, 187, 0.30);
|
2020-04-29 23:45:50 +00:00
|
|
|
flex-basis: 100%;
|
|
|
|
max-width: 15vh;
|
2020-04-14 01:40:10 +00:00
|
|
|
}
|
2020-04-26 02:33:49 +00:00
|
|
|
|
2020-04-29 23:45:50 +00:00
|
|
|
.book-thumb{
|
2020-05-01 13:18:34 +00:00
|
|
|
// cursor: not-allowed;
|
2020-04-29 23:45:50 +00:00
|
|
|
transition: all .2s;
|
|
|
|
z-index: inherit;
|
|
|
|
flex-basis: 12%;
|
|
|
|
text-align: center;
|
2020-05-01 13:18:34 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
.book-thumb.enabled{
|
|
|
|
cursor: pointer;
|
2020-04-29 23:45:50 +00:00
|
|
|
&:hover{
|
|
|
|
transform: scale(1.1);
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
}
|
2020-05-01 17:24:22 +00:00
|
|
|
//Fade vue transition
|
|
|
|
.fade-enter-active, .fade-leave-active {
|
|
|
|
transition: opacity .2s;
|
|
|
|
}
|
|
|
|
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2020-05-03 22:38:33 +00:00
|
|
|
|
|
|
|
.slide-left-enter-active,
|
|
|
|
.slide-left-leave-active,
|
|
|
|
.slide-right-enter-active,
|
|
|
|
.slide-right-leave-active {
|
|
|
|
transition-duration: 0.2s;
|
|
|
|
transition-property: height, opacity, transform;
|
|
|
|
transition-timing-function: ease-in-out;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slide-left-enter,
|
|
|
|
.slide-right-leave-active {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translate(2em, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.slide-left-leave-active,
|
|
|
|
.slide-right-enter {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translate(-2em, 0);
|
|
|
|
}
|
2020-05-07 00:02:18 +00:00
|
|
|
|
|
|
|
.has-diego-width-800{
|
|
|
|
max-width: 50rem;
|
|
|
|
}
|
|
|
|
.is-boarderless{
|
|
|
|
border: none;
|
|
|
|
}
|