610 lines
11 KiB
SCSS
610 lines
11 KiB
SCSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
--accent-color: #1042e9;
|
|
--light-shade: rgba(var(--text-color), 0.06);
|
|
--text-color: 17, 17, 17;
|
|
--text-color-light: 100, 100, 100;
|
|
--foreground-color: 255, 255, 255;
|
|
--background-color: #efefef;
|
|
--error-color: red;
|
|
color: rgba(var(--text-color), 1);
|
|
height: calc(100%);
|
|
font-size: clamp(1rem, 1.2vmax, 3rem);
|
|
background: rgba(var(--text-color), 0.06);
|
|
}
|
|
body[data-theme='dark']{
|
|
--accent-color:#2fb3ff;
|
|
--text-color: 240, 240, 240;
|
|
--text-color-light: 170, 170, 170;
|
|
--foreground-color: 20, 20, 20;
|
|
--error-color: rgb(255, 106, 106);
|
|
background: rgba(var(--foreground-color), 1);
|
|
.outlet-preview{
|
|
background: rgba(var(--text-color), 0.02);
|
|
box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 5px -1px, rgba(0, 0, 0, 0.4) 0px 1px 3px -1px;
|
|
sm-carousel{
|
|
border-top: dashed 0.5rem rgba(var(--foreground-color), 0.7);
|
|
}
|
|
}
|
|
}
|
|
/* .font-mono{
|
|
font-family: 'Roboto Mono', sans-serif;
|
|
}
|
|
.font-slab{
|
|
font-family: 'Roboto slab', sans-serif;
|
|
} */
|
|
|
|
.h1{
|
|
font-size: 2.5rem;
|
|
}
|
|
.h2{
|
|
font-size: 2rem;
|
|
}
|
|
.h3{
|
|
font-size: 1.4rem;
|
|
}
|
|
.h4{
|
|
font-size: 1rem;
|
|
}
|
|
.h5{
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.uppercase{
|
|
text-transform: uppercase;
|
|
}
|
|
.capitalize{
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
p {
|
|
max-width: 60ch;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
img{
|
|
object-fit: cover;
|
|
}
|
|
|
|
button{
|
|
position: relative;
|
|
overflow: hidden;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
border: none;
|
|
background: none;
|
|
cursor: pointer;
|
|
outline: none;
|
|
color: inherit;
|
|
font-weight: 500;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
.button{
|
|
border-radius: 0.2rem;
|
|
padding: 0.5rem 0.6rem;
|
|
}
|
|
.button--primary{
|
|
background: var(--accent-color);
|
|
color: rgba(var(--foreground-color), 1);
|
|
.icon{
|
|
fill: rgba(var(--foreground-color), 1);
|
|
}
|
|
}
|
|
button:focus-visible{
|
|
outline: rgba(var(--text-color), 1) 0.1rem solid;
|
|
}
|
|
sm-input,
|
|
sm-textarea{
|
|
--border-radius: 0.2rem;
|
|
--background: rgba(var(--text-color), 0.06);
|
|
}
|
|
sm-button{
|
|
--border-radius: 0.2rem;
|
|
}
|
|
ul{
|
|
list-style: none;
|
|
}
|
|
.flex{
|
|
display: flex;
|
|
}
|
|
.grid{
|
|
display: grid;
|
|
}
|
|
.flow-column{
|
|
grid-auto-flow: column;
|
|
}
|
|
.gap-0-5{
|
|
gap: 0.5rem;
|
|
}
|
|
.gap-1{
|
|
gap: 1rem;
|
|
}
|
|
.gap-1-5{
|
|
gap: 1.5rem;
|
|
}
|
|
.gap-2{
|
|
gap: 2rem;
|
|
}
|
|
.gap-3{
|
|
gap: 3rem;
|
|
}
|
|
.pos-relative{
|
|
position: relative;
|
|
}
|
|
.align-start{
|
|
align-items: flex-start;
|
|
}
|
|
.align-center{
|
|
align-items: center;
|
|
}
|
|
.text-center{
|
|
text-align: center;
|
|
}
|
|
.justify-start{
|
|
justify-content: start;
|
|
}
|
|
.justify-center{
|
|
justify-content: center;
|
|
}
|
|
.justify-right{
|
|
margin-left: auto;
|
|
}
|
|
.align-self-center{
|
|
align-self: center;
|
|
}
|
|
.justify-self-center{
|
|
justify-self: center;
|
|
}
|
|
.direction-column{
|
|
flex-direction: column;
|
|
}
|
|
.space-between{
|
|
justify-content: space-between;
|
|
}
|
|
.w-100{
|
|
width: 100%;
|
|
}
|
|
.margin-top-1-5{
|
|
margin-top: 1.5rem;
|
|
}
|
|
.margin-bottom-0-5r{
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.margin-bottom-1r{
|
|
margin-bottom: 1rem;
|
|
}
|
|
.margin-bottom-1-5r{
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
.margin-bottom-2r{
|
|
margin-bottom: 2rem;
|
|
}
|
|
.margin-bottom-3r{
|
|
margin-bottom: 3rem;
|
|
}
|
|
.margin-bottom-4r{
|
|
margin-bottom: 4rem;
|
|
}
|
|
.margin-left-0-5{
|
|
margin-left: 0.5rem;
|
|
}
|
|
.margin-right-0-5{
|
|
margin-right: 0.5rem;
|
|
}
|
|
.hide{
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
.hide-completely{
|
|
display: none !important;
|
|
}
|
|
.no-transformations{
|
|
transform: none !important;
|
|
}
|
|
.overflow-ellipsis{
|
|
width: 100%;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.ripple{
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
transform: scale(0);
|
|
background: rgba(var(--text-color), 0.16);
|
|
pointer-events: none;
|
|
}
|
|
.interact{
|
|
position: relative;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
.observe-empty-state:empty{
|
|
display: none;
|
|
}
|
|
.observe-empty-state:not(:empty) ~ .empty-state{
|
|
display: none;
|
|
}
|
|
.icon{
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
fill: rgba(var(--text-color), 0.9);
|
|
}
|
|
.icon-only{
|
|
height: 2.6rem;
|
|
width: 2.6rem;
|
|
padding: 0.6rem;
|
|
}
|
|
.close-icon{
|
|
padding: 0.3rem;
|
|
}
|
|
.close-button{
|
|
left: -0.5rem;
|
|
}
|
|
|
|
.button__label{
|
|
font-size: 1rem;
|
|
}
|
|
.button__icon{
|
|
height: 1.1rem;
|
|
width: 1.1rem;
|
|
&--left{
|
|
margin-right: 0.5rem;
|
|
}
|
|
&--right{
|
|
margin-left: 0.5rem;
|
|
}
|
|
}
|
|
|
|
.color-0-9{
|
|
color: rgba(var(--text-color), 0.9);
|
|
}
|
|
.color-0-8{
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
.color-0-7{
|
|
color: rgba(var(--text-color), 0.7);
|
|
}
|
|
|
|
.weight-400{
|
|
font-weight: 400;
|
|
}
|
|
.weight-500{
|
|
font-weight: 500;
|
|
}
|
|
.weight-700{
|
|
font-weight: 700;
|
|
}
|
|
.weight-900{
|
|
font-weight: 900;
|
|
}
|
|
|
|
.popup__header{
|
|
padding: 0.5rem 1.5rem 0 1rem;
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
gap: 0.5rem;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
.popup__header__close{
|
|
padding: 0.5rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
|
|
#elevator_button_panel{
|
|
gap: 1rem;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
|
|
.floor__button{
|
|
padding: 1rem;
|
|
height: 4rem;
|
|
width: 4rem;
|
|
justify-content: center;
|
|
border-radius: 0.5rem;
|
|
font-size: 1.5rem;
|
|
font-weight: 900;
|
|
background: rgba(var(--text-color), 0.06);
|
|
&--active{
|
|
background: rgba(var(--text-color), 0.2);
|
|
box-shadow: 0 0 0 0.4rem rgba(var(--text-color), 1) inset;
|
|
}
|
|
}
|
|
|
|
|
|
#main_header{
|
|
position: relative;
|
|
padding: 1rem;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
#elevator_button{
|
|
justify-self: flex-start;
|
|
}
|
|
#main_logo{
|
|
justify-self: center;
|
|
}
|
|
#main_header__logo{
|
|
height: 1.8rem;
|
|
width: 1.8rem;
|
|
}
|
|
#theme_switcher{
|
|
justify-self: flex-end;
|
|
}
|
|
|
|
.page{
|
|
position: relative;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.tag{
|
|
background: var(--accent-color);
|
|
padding: 0.4rem 0.6rem;
|
|
}
|
|
|
|
.common-padding{
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.floor{
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
#floor_1__outlets{
|
|
margin: 1rem 0;
|
|
gap: 1rem;
|
|
grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
|
|
}
|
|
|
|
.outlet-preview{
|
|
padding-top: 2rem;
|
|
background: rgba(var(--foreground-color), 1);
|
|
// border: solid 0.2rem rgba(var(--text-color), 0.2);
|
|
border-radius: 0.3rem;
|
|
transition: box-shadow 0.3s;
|
|
// box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.2);
|
|
box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
|
|
sm-carousel{
|
|
border-top: dashed 0.5rem rgba(var(--foreground-color), 1);
|
|
}
|
|
/* &:nth-of-type(1){
|
|
background: url(../assets/bg/floor-1-bg.svg) no-repeat top center, linear-gradient(rgba(var(--foreground-color), 1), rgba(var(--foreground-color), 1));
|
|
background-size: contain;
|
|
} */
|
|
}
|
|
.outlet__title{
|
|
font-weight: 900;
|
|
text-transform: capitalize;
|
|
}
|
|
.outlet__description{
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
.outlet-preview__button{}
|
|
|
|
.label{
|
|
position: relative;
|
|
font-size: 0.8rem;
|
|
color: var(--accent-color);
|
|
margin-bottom: 0.3rem;
|
|
}
|
|
|
|
sm-carousel{
|
|
position: relative;
|
|
height: 100%;
|
|
background: rgba(var(--text-color), 0.06);
|
|
padding-bottom: 4rem;
|
|
padding-top: 1.5rem;
|
|
--arrow-left: 1.5rem;
|
|
--arrow-right: 1.5rem;
|
|
--arrow-fill: rgba(var(--text-color), 1);
|
|
--arrow-background: transparent;
|
|
--arrow-box-shadow: none;
|
|
--arrow-bottom: -3.5rem;
|
|
--indicator-bottom: -2.5rem;
|
|
}
|
|
|
|
.bit-bond-series__row,
|
|
.bob-fund__row,
|
|
.investor-card{
|
|
min-width: 100%;
|
|
}
|
|
|
|
.investor-card{
|
|
align-items: flex-start;
|
|
grid-template-columns: auto 1fr;
|
|
grid-template-rows: auto 1fr;
|
|
&--small{
|
|
grid-template-areas: 'img .' 'para para';
|
|
.investor__image{
|
|
width: 4rem;
|
|
height: 4rem;
|
|
border-radius: 50%;
|
|
}
|
|
}
|
|
&--big{
|
|
grid-template-areas: 'img .' 'img para';
|
|
}
|
|
}
|
|
.investor__image{
|
|
grid-area: img;
|
|
width: 8rem;
|
|
border-radius: 0.5rem;
|
|
}
|
|
.investor__bio{
|
|
font-size: 0.9rem;
|
|
margin-top: 0.5rem;
|
|
}
|
|
.investor__contribution-container{
|
|
grid-area: para;
|
|
}
|
|
|
|
|
|
|
|
sm-tab-header{
|
|
padding: 0.3rem;
|
|
border-radius: 0.3rem;
|
|
background: rgba(var(--text-color), 0.06);
|
|
}
|
|
|
|
table{
|
|
border-collapse: collapse;
|
|
width: max-content;
|
|
}
|
|
.tr{
|
|
margin: 0.5rem;
|
|
&:nth-of-type(even){
|
|
background: rgba(var(--text-color), 0.1);
|
|
}
|
|
}
|
|
.td{
|
|
padding: 0.6rem 0.8rem;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#ico_page__carousel{
|
|
width: min(32rem ,100%);
|
|
}
|
|
|
|
|
|
|
|
.phase{
|
|
grid-template-columns: 4rem 1fr;
|
|
&:not(:last-of-type){
|
|
.phase__description{
|
|
padding-bottom: 1.5rem;
|
|
}
|
|
}
|
|
&:last-of-type{
|
|
.progress-bar__line{
|
|
height: 0;
|
|
}
|
|
}
|
|
}
|
|
.progress-bar__circle,
|
|
.progress-bar__line{
|
|
position: absolute;
|
|
margin-top: 1rem;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
.progress-bar__circle{
|
|
padding: 0.4rem;
|
|
background: rgba(var(--foreground-color), 1);
|
|
border: solid rgba(var(--text-color), 1) 0.1rem;
|
|
border-radius: 50%;
|
|
z-index: 1;
|
|
}
|
|
.progress-bar__line{
|
|
height: 100%;
|
|
width: 0.1rem;
|
|
background: rgba(var(--text-color), 0.9);
|
|
}
|
|
.phase__date{
|
|
margin-top: 0.3rem;
|
|
}
|
|
.phase__description{
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
@media only screen and (max-width: 640px) {
|
|
.hide-on-mobile{
|
|
display: none;
|
|
}
|
|
}
|
|
@media only screen and (min-width: 640px) {
|
|
.h1{
|
|
font-size: 4rem;
|
|
}
|
|
.h2{
|
|
font-size: 2.5rem;
|
|
}
|
|
.h3{
|
|
font-size: 1.5rem;
|
|
}
|
|
.h4{
|
|
font-size: 1.1rem;
|
|
}
|
|
#main_header{
|
|
padding: 1.5rem 2rem;
|
|
}
|
|
.page{
|
|
padding: 0 3rem;
|
|
}
|
|
.common-padding{
|
|
padding: 0 2rem;
|
|
}
|
|
.floor__aside{
|
|
position: absolute;
|
|
left: 1rem;
|
|
top: 50%;
|
|
transform: translateY(-50%) rotate(-90deg);
|
|
}
|
|
.outlet-preview{
|
|
padding-top: 3rem;
|
|
}
|
|
table{
|
|
justify-self: center;
|
|
}
|
|
#elevator_sections{
|
|
gap: 3rem;
|
|
grid-template-columns: auto 1fr;
|
|
}
|
|
}
|
|
@media only screen and (min-width: 1280px) {
|
|
.page{
|
|
padding: 0 10vw;
|
|
}
|
|
#elevator_popup{
|
|
--width: min(100%, 54rem)
|
|
}
|
|
}
|
|
|
|
@media (any-hover: hover){
|
|
::-webkit-scrollbar{
|
|
width: 0.5rem;
|
|
height: 0.5rem;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb{
|
|
background: rgba(var(--text-color), 0.3);
|
|
border-radius: 1rem;
|
|
&:hover{
|
|
background: rgba(var(--text-color), 0.5);
|
|
}
|
|
}
|
|
body[data-theme='dark']{
|
|
.outlet-preview:hover{
|
|
z-index: 1;
|
|
box-shadow: rgba(0, 0, 0, 0.3) 0px 48px 100px 0px;
|
|
}
|
|
}
|
|
.outlet-preview:hover{
|
|
z-index: 1;
|
|
box-shadow: rgba(0, 0, 0, 0.15) 0px 48px 100px 0px;
|
|
}
|
|
.page-link{
|
|
cursor: pointer;
|
|
transition: color 0.3s;
|
|
&:hover{
|
|
color: var(--accent-color);
|
|
.icon{
|
|
fill: var(--accent-color);
|
|
}
|
|
}
|
|
}
|
|
.floor__button:hover{
|
|
background: rgba(var(--text-color), 0.2);
|
|
}
|
|
} |