diff --git a/css/main.css b/css/main.css index f2dacba..95d85b0 100644 --- a/css/main.css +++ b/css/main.css @@ -1,4 +1,3 @@ -@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap"); * { padding: 0; margin: 0; @@ -22,7 +21,7 @@ body { color: rgba(var(--text-color), 1); height: calc(100%); font-size: clamp(1rem, 1.2vmax, 3rem); - background: rgba(var(--foreground-color), 1); + background: rgba(var(--text-color), 0.06); } body[data-theme=dark] { @@ -31,6 +30,36 @@ body[data-theme=dark] { --text-color-light: 170, 170, 170; --foreground-color: 20, 20, 20; --error-color: rgb(255, 106, 106); + background: rgba(var(--foreground-color), 1); +} + +.h1 { + font-size: 2.5rem; +} + +.h2 { + font-size: 2rem; +} + +.h3 { + font-size: 1.4rem; +} + +.h4 { + font-size: 1rem; +} + +.h5 { + font-size: 0.8rem; +} + +p { + line-height: 1.5; +} + +img { + -o-object-fit: cover; + object-fit: cover; } button { @@ -96,12 +125,34 @@ ul { grid-auto-flow: column; } +.gap-0-5 { + gap: 0.5rem; +} + +.gap-1 { + gap: 1rem; +} + +.gap-1-5 { + gap: 1.5rem; +} + .align-center { -webkit-box-align: center; -ms-flex-align: center; align-items: center; } +.text-center { + text-align: center; +} + +.justify-center { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; +} + .justify-right { margin-left: auto; } @@ -127,10 +178,22 @@ ul { margin-top: 1.5rem; } +.margin-bottom-0-5 { + margin-bottom: 0.5rem; +} + +.margin-bottom-1 { + margin-bottom: 1rem; +} + .margin-bottom-1-5 { margin-bottom: 1.5rem; } +.margin-bottom-2 { + margin-bottom: 2rem; +} + .margin-left-0-5 { margin-left: 0.5rem; } @@ -204,13 +267,157 @@ ul { left: -0.5rem; } -.option__icon { - height: 1.2rem; - width: 1.2rem; - margin-right: 0.8rem; -} - -.option__label { +.button__label { font-size: 1rem; } -/*# sourceMappingURL=main.css.map */ \ No newline at end of file + +.button__icon { + height: 1.1rem; + width: 1.1rem; +} +.button__icon--left { + margin-right: 0.5rem; +} +.button__icon--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; +} + +#background_tile { + position: absolute; + width: 100%; + height: 80vh; + left: 0; + top: 50vh; + z-index: -1; + -webkit-transform: skewY(-3deg); + transform: skewY(-3deg); + background: #f6f6f6; +} + +#main_header { + position: relative; + padding: 1rem; + grid-template-columns: repeat(3, 1fr); +} + +#main_logo { + position: absolute; + justify-self: center; +} + +#main_header__logo { + height: 1.8rem; + width: 1.8rem; +} + +.page { + padding: 0 1rem; +} + +#floor_1__outlets { + margin: 1rem 0; + gap: 1rem; + grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr)); +} + +.outlet-preview { + padding: 1rem; + background: rgba(var(--foreground-color), 1); + -webkit-transition: -webkit-box-shadow 0.3s; + transition: -webkit-box-shadow 0.3s; + transition: box-shadow 0.3s; + transition: box-shadow 0.3s, -webkit-box-shadow 0.3s; + -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; + box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; + /* &:nth-of-type(1){ + transform: rotateY(1deg); + } + &:nth-of-type(2){ + transform: translateZ(-0.2rem); + } + &:nth-of-type(3){ + transform: rotateY(-1deg); + } */ +} +.outlet-preview:hover { + -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; + box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; +} + +.outlet__title { + font-weight: bold; + text-transform: capitalize; +} + +.outlet__description { + color: rgba(var(--text-color), 0.8); +} + +.investor-card { + grid-template-columns: auto 1fr; + grid-template-areas: "img ." "img ."; +} + +.investor__image { + grid-area: img; + width: 4rem; + height: 4rem; + border-radius: 50%; +} + +@media only screen and (min-width: 640px) { + #main_header { + padding: 1.5rem 2rem; + } + + .page { + padding: 0 3rem; + } +} +@media only screen and (min-width: 1280px) { + .page { + padding: 0 10vw; + } + + .outlet-preview { + padding: 3rem 2rem; + } +} +@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; + } + ::-webkit-scrollbar-thumb:hover { + background: rgba(var(--text-color), 0.5); + } +} \ No newline at end of file diff --git a/css/main.css.map b/css/main.css.map deleted file mode 100644 index cf7256e..0000000 --- a/css/main.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["main.scss","main.css"],"names":[],"mappings":"AAAQ,gIAAA;AAER;EACI,UAAA;EACA,SAAA;EACA,8BAAA;EACA,sBAAA;EACA,iCAAA;ACAJ;;ADEA;EACI,uBAAA;ACCJ;;ADEA;EACI,uBAAA;EACA,4CAAA;EACA,wBAAA;EACA,iCAAA;EACA,iCAAA;EACA,2BAAA;EACA,kBAAA;EACA,iCAAA;EACA,kBAAA;EACA,qCAAA;EACA,4CAAA;ACCJ;;ADCA;EACI,sBAAA;EACA,2BAAA;EACA,iCAAA;EACA,8BAAA;EACA,iCAAA;ACEJ;;ADCA;EACI,kBAAA;EACA,gBAAA;EACA,2BAAA;EAAA,2BAAA;EAAA,oBAAA;EACA,yBAAA;MAAA,sBAAA;UAAA,mBAAA;EACA,YAAA;EACA,gBAAA;EACA,eAAA;EACA,aAAA;EACA,cAAA;EACA,gBAAA;EACA,wCAAA;ACEJ;;ADAA;EACI,qBAAA;EACA,sBAAA;ACGJ;;ADDA;EACI,+BAAA;EACA,uCAAA;ACIJ;ADHI;EACI,sCAAA;ACKR;;ADFA;EACI,gDAAA;ACKJ;;ADHA;;EAEI,uBAAA;EACA,2CAAA;ACMJ;;ADJA;EACI,uBAAA;ACOJ;;ADLA;EACI,gBAAA;ACQJ;;ADNA;EACI,oBAAA;EAAA,oBAAA;EAAA,aAAA;ACSJ;;ADPA;EACI,aAAA;ACUJ;;ADRA;EACI,sBAAA;ACWJ;;ADTA;EACI,yBAAA;MAAA,sBAAA;UAAA,mBAAA;ACYJ;;ADVA;EACI,iBAAA;ACaJ;;ADXA;EACI,4BAAA;EAAA,6BAAA;MAAA,0BAAA;UAAA,sBAAA;ACcJ;;ADZA;EACI,yBAAA;MAAA,sBAAA;UAAA,8BAAA;ACeJ;;ADbA;EACI,WAAA;ACgBJ;;ADdA;EACI,kBAAA;ACiBJ;;ADfA;EACI,qBAAA;ACkBJ;;ADhBA;EACI,mBAAA;ACmBJ;;ADjBA;EACI,oBAAA;ACoBJ;;ADlBA;EACI,UAAA;EACA,oBAAA;ACqBJ;;ADnBA;EACI,wBAAA;ACsBJ;;ADpBA;EACI,kCAAA;UAAA,0BAAA;ACuBJ;;ADrBA;EACI,WAAA;EACA,gBAAA;EACA,mBAAA;EACA,uBAAA;ACwBJ;;ADtBA;EACI,kBAAA;EACA,kBAAA;EACA,2BAAA;UAAA,mBAAA;EACA,yCAAA;EACA,oBAAA;ACyBJ;;ADvBA;EACI,kBAAA;EACA,gBAAA;EACA,eAAA;EACA,wCAAA;AC0BJ;;ADxBA;EACI,aAAA;AC2BJ;;ADzBA;EACI,aAAA;AC4BJ;;AD1BA;EACI,aAAA;EACA,cAAA;EACA,kCAAA;AC6BJ;;AD3BA;EACI,cAAA;EACA,aAAA;EACA,eAAA;AC8BJ;;AD5BA;EACI,eAAA;AC+BJ;;AD7BA;EACI,aAAA;ACgCJ;;AD7BA;EACI,cAAA;EACA,aAAA;EACA,oBAAA;ACgCJ;;AD9BA;EACI,eAAA;ACiCJ","file":"main.css"} \ No newline at end of file diff --git a/css/main.min.css b/css/main.min.css index 0a4130e..dfaac0c 100644 --- a/css/main.min.css +++ b/css/main.min.css @@ -1,2 +1 @@ -@import"https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap";*{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: #00a566;--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(--foreground-color), 1)}body[data-theme=dark]{--accent-color:#00fa9a;--text-color: 240, 240, 240;--text-color-light: 170, 170, 170;--foreground-color: 20, 20, 20;--error-color: rgb(255, 106, 106)}button{position:relative;overflow:hidden;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:none;background:none;cursor:pointer;outline:none;color:inherit;font-weight:500;-webkit-tap-highlight-color:transparent}.button{border-radius:.2rem;padding:.5rem .6rem}.button--primary{background:var(--accent-color);color:rgba(var(--foreground-color), 1)}.button--primary .icon{fill:rgba(var(--foreground-color), 1)}button:focus-visible{outline:rgba(var(--text-color), 1) .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:-webkit-box;display:-ms-flexbox;display:flex}.grid{display:grid}.flow-column{grid-auto-flow:column}.align-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.justify-right{margin-left:auto}.direction-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.space-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.full-width{width:100%}.margin-top-1-5{margin-top:1.5rem}.margin-bottom-1-5{margin-bottom:1.5rem}.margin-left-0-5{margin-left:.5rem}.margin-right-0-5{margin-right:.5rem}.hide{opacity:0;pointer-events:none}.hide-completely{display:none !important}.no-transformations{-webkit-transform:none !important;transform:none !important}.overflow-ellipsis{width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ripple{position:absolute;border-radius:50%;-webkit-transform:scale(0);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:.6rem}.close-icon{padding:.3rem}.close-button{left:-0.5rem}.option__icon{height:1.2rem;width:1.2rem;margin-right:.8rem}.option__label{font-size:1rem} -/*# sourceMappingURL=main.min.css.map */ \ No newline at end of file +*{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: #00a566;--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:#00fa9a;--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)}.h1{font-size:2.5rem}.h2{font-size:2rem}.h3{font-size:1.4rem}.h4{font-size:1rem}.h5{font-size:.8rem}p{line-height:1.5}img{-o-object-fit:cover;object-fit:cover}button{position:relative;overflow:hidden;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:none;background:none;cursor:pointer;outline:none;color:inherit;font-weight:500;-webkit-tap-highlight-color:transparent}.button{border-radius:.2rem;padding:.5rem .6rem}.button--primary{background:var(--accent-color);color:rgba(var(--foreground-color), 1)}.button--primary .icon{fill:rgba(var(--foreground-color), 1)}button:focus-visible{outline:rgba(var(--text-color), 1) .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:-webkit-box;display:-ms-flexbox;display:flex}.grid{display:grid}.flow-column{grid-auto-flow:column}.gap-0-5{gap:.5rem}.gap-1{gap:1rem}.gap-1-5{gap:1.5rem}.align-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.text-center{text-align:center}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.justify-right{margin-left:auto}.direction-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.space-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.full-width{width:100%}.margin-top-1-5{margin-top:1.5rem}.margin-bottom-0-5{margin-bottom:.5rem}.margin-bottom-1{margin-bottom:1rem}.margin-bottom-1-5{margin-bottom:1.5rem}.margin-bottom-2{margin-bottom:2rem}.margin-left-0-5{margin-left:.5rem}.margin-right-0-5{margin-right:.5rem}.hide{opacity:0;pointer-events:none}.hide-completely{display:none !important}.no-transformations{-webkit-transform:none !important;transform:none !important}.overflow-ellipsis{width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ripple{position:absolute;border-radius:50%;-webkit-transform:scale(0);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:.6rem}.close-icon{padding:.3rem}.close-button{left:-0.5rem}.button__label{font-size:1rem}.button__icon{height:1.1rem;width:1.1rem}.button__icon--left{margin-right:.5rem}.button__icon--right{margin-left:.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}#background_tile{position:absolute;width:100%;height:80vh;left:0;top:50vh;z-index:-1;-webkit-transform:skewY(-3deg);transform:skewY(-3deg);background:#f6f6f6}#main_header{position:relative;padding:1rem;grid-template-columns:repeat(3, 1fr)}#main_logo{position:absolute;justify-self:center}#main_header__logo{height:1.8rem;width:1.8rem}.page{padding:0 1rem}#floor_1__outlets{margin:1rem 0;gap:1rem;grid-template-columns:repeat(auto-fill, minmax(18rem, 1fr))}.outlet-preview{padding:1rem;background:rgba(var(--foreground-color), 1);-webkit-transition:-webkit-box-shadow .3s;transition:-webkit-box-shadow .3s;transition:box-shadow .3s;transition:box-shadow .3s, -webkit-box-shadow .3s;-webkit-box-shadow:rgba(50,50,93,.25) 0px 2px 5px -1px,rgba(0,0,0,.3) 0px 1px 3px -1px;box-shadow:rgba(50,50,93,.25) 0px 2px 5px -1px,rgba(0,0,0,.3) 0px 1px 3px -1px}.outlet-preview:hover{-webkit-box-shadow:rgba(17,12,46,.15) 0px 48px 100px 0px;box-shadow:rgba(17,12,46,.15) 0px 48px 100px 0px}.outlet__title{font-weight:bold;text-transform:capitalize}.outlet__description{color:rgba(var(--text-color), 0.8)}.investor-card{grid-template-columns:auto 1fr;grid-template-areas:"img ." "img ."}.investor__image{grid-area:img;width:4rem;height:4rem;border-radius:50%}@media only screen and (min-width: 640px){#main_header{padding:1.5rem 2rem}.page{padding:0 3rem}}@media only screen and (min-width: 1280px){.page{padding:0 10vw}.outlet-preview{padding:3rem 2rem}}@media(any-hover: hover){::-webkit-scrollbar{width:.5rem;height:.5rem}::-webkit-scrollbar-thumb{background:rgba(var(--text-color), 0.3);border-radius:1rem}::-webkit-scrollbar-thumb:hover{background:rgba(var(--text-color), 0.5)}} \ No newline at end of file diff --git a/css/main.min.css.map b/css/main.min.css.map deleted file mode 100644 index 066f6ff..0000000 --- a/css/main.min.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["main.scss"],"names":[],"mappings":"AAAQ,0HAAA,CAER,EACI,SAAA,CACA,QAAA,CACA,6BAAA,CACA,qBAAA,CACA,+BAAA,CAEJ,KACI,sBAAA,CAGJ,KACI,uBAAA,CACA,4CAAA,CACA,wBAAA,CACA,iCAAA,CACA,iCAAA,CACA,2BAAA,CACA,kBAAA,CACA,gCAAA,CACA,iBAAA,CACA,oCAAA,CACA,2CAAA,CAEJ,sBACI,sBAAA,CACA,2BAAA,CACA,iCAAA,CACA,8BAAA,CACA,iCAAA,CAGJ,OACI,iBAAA,CACA,eAAA,CACA,0BAAA,CAAA,0BAAA,CAAA,mBAAA,CACA,wBAAA,CAAA,qBAAA,CAAA,kBAAA,CACA,WAAA,CACA,eAAA,CACA,cAAA,CACA,YAAA,CACA,aAAA,CACA,eAAA,CACA,uCAAA,CAEJ,QACI,mBAAA,CACA,mBAAA,CAEJ,iBACI,8BAAA,CACA,sCAAA,CACA,uBACI,qCAAA,CAGR,qBACI,8CAAA,CAEJ,qBAEI,uBAAA,CACA,2CAAA,CAEJ,UACI,uBAAA,CAEJ,GACI,eAAA,CAEJ,MACI,mBAAA,CAAA,mBAAA,CAAA,YAAA,CAEJ,MACI,YAAA,CAEJ,aACI,qBAAA,CAEJ,cACI,wBAAA,CAAA,qBAAA,CAAA,kBAAA,CAEJ,eACI,gBAAA,CAEJ,kBACI,2BAAA,CAAA,4BAAA,CAAA,yBAAA,CAAA,qBAAA,CAEJ,eACI,wBAAA,CAAA,qBAAA,CAAA,6BAAA,CAEJ,YACI,UAAA,CAEJ,gBACI,iBAAA,CAEJ,mBACI,oBAAA,CAEJ,iBACI,iBAAA,CAEJ,kBACI,kBAAA,CAEJ,MACI,SAAA,CACA,mBAAA,CAEJ,iBACI,uBAAA,CAEJ,oBACI,iCAAA,CAAA,yBAAA,CAEJ,mBACI,UAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA,CAEJ,QACI,iBAAA,CACA,iBAAA,CACA,0BAAA,CAAA,kBAAA,CACA,wCAAA,CACA,mBAAA,CAEJ,UACI,iBAAA,CACA,eAAA,CACA,cAAA,CACA,uCAAA,CAEJ,2BACI,YAAA,CAEJ,8CACI,YAAA,CAEJ,MACI,YAAA,CACA,aAAA,CACA,iCAAA,CAEJ,WACI,aAAA,CACA,YAAA,CACA,aAAA,CAEJ,YACI,aAAA,CAEJ,cACI,YAAA,CAGJ,cACI,aAAA,CACA,YAAA,CACA,kBAAA,CAEJ,eACI,cAAA","file":"main.min.css"} \ No newline at end of file diff --git a/css/main.scss b/css/main.scss index cea45bd..702266d 100644 --- a/css/main.scss +++ b/css/main.scss @@ -1,5 +1,3 @@ -@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap'); - * { padding: 0; margin: 0; @@ -22,7 +20,7 @@ body { color: rgba(var(--text-color), 1); height: calc(100%); font-size: clamp(1rem, 1.2vmax, 3rem); - background: rgba(var(--foreground-color), 1); + background: rgba(var(--text-color), 0.06); } body[data-theme='dark']{ --accent-color:#00fa9a; @@ -30,6 +28,34 @@ body[data-theme='dark']{ --text-color-light: 170, 170, 170; --foreground-color: 20, 20, 20; --error-color: rgb(255, 106, 106); + background: rgba(var(--foreground-color), 1); +} +.heading{ + // font-family: 'Roboto Mono', 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; +} + +p { + line-height: 1.5; +} + +img{ + object-fit: cover; } button{ @@ -79,9 +105,24 @@ ul{ .flow-column{ grid-auto-flow: column; } +.gap-0-5{ + gap: 0.5rem; +} +.gap-1{ + gap: 1rem; +} +.gap-1-5{ + gap: 1.5rem; +} .align-center{ align-items: center; } +.text-center{ + text-align: center; +} +.justify-center{ + justify-content: center; +} .justify-right{ margin-left: auto; } @@ -97,9 +138,18 @@ ul{ .margin-top-1-5{ margin-top: 1.5rem; } +.margin-bottom-0-5{ + margin-bottom: 0.5rem; +} +.margin-bottom-1{ + margin-bottom: 1rem; +} .margin-bottom-1-5{ margin-bottom: 1.5rem; } +.margin-bottom-2{ + margin-bottom: 2rem; +} .margin-left-0-5{ margin-left: 0.5rem; } @@ -158,11 +208,145 @@ ul{ left: -0.5rem; } -.option__icon{ - height: 1.2rem; - width: 1.2rem; - margin-right: 0.8rem; -} -.option__label{ +.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; +} + + +#background_tile{ + position: absolute; + width: 100%; + height: 80vh; + left: 0; + top: 50vh; + z-index: -1; + transform: skewY(-3deg); + background: #f6f6f6; +} + +#main_header{ + position: relative; + padding: 1rem; + grid-template-columns: repeat(3, 1fr); +} +#main_logo{ + position: absolute; + justify-self: center; +} +#main_header__logo{ + height: 1.8rem; + width: 1.8rem; +} + +.page{ + padding: 0 1rem; +} + +#floor_1__outlets{ + margin: 1rem 0; + gap: 1rem; + grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr)); +} + +.outlet-preview{ + // transform-style: preserve-3d; + padding: 1rem; + background: rgba(var(--foreground-color), 1); + // border: solid 0.8rem rgba(var(--text-color), 1); + transition: box-shadow 0.3s; + box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; + &:hover{ + box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; + } +/* &:nth-of-type(1){ + transform: rotateY(1deg); + } + &:nth-of-type(2){ + transform: translateZ(-0.2rem); + } + &:nth-of-type(3){ + transform: rotateY(-1deg); + } */ +} +.outlet__title{ + font-weight: bold; + text-transform: capitalize; +} +.outlet__description{ + color: rgba(var(--text-color), 0.8); +} +.outlet-preview__button{} + +.investor-card{ + grid-template-columns: auto 1fr; + grid-template-areas: 'img .' 'img .'; +} +.investor__image{ + grid-area: img; + width: 4rem; + height: 4rem; + border-radius: 50%; +} + + +@media only screen and (min-width: 640px) { + #main_header{ + padding: 1.5rem 2rem; + } + .page{ + padding: 0 3rem; + } +} +@media only screen and (min-width: 1280px) { + .page{ + padding: 0 10vw; + } + .outlet-preview{ + padding: 3rem 2rem; + } +} + +@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); + } + } +} \ No newline at end of file diff --git a/dp.jpg b/dp.jpg new file mode 100644 index 0000000..4af1b4f Binary files /dev/null and b/dp.jpg differ diff --git a/index.html b/index.html index 338168c..ab16fa6 100644 --- a/index.html +++ b/index.html @@ -6,13 +6,351 @@ Document + + - -
- -