🔥 Huge style refactoring by using SvelteKit built-in style tag
It's been tricky but got there finally! Hello `:global` - Avoid using one global CSS file containing everything - Import the component SCSS file in a script tag from the component file to allow style scoping and including it only when used
This commit is contained in:
@@ -10,15 +10,15 @@
|
||||
cursor: grab;
|
||||
user-select: none;
|
||||
|
||||
@include bp (sm) {
|
||||
// height: 130vw;
|
||||
}
|
||||
@include bp (md) {
|
||||
// height: 112vw;
|
||||
}
|
||||
@include bp (xl) {
|
||||
// height: 100vw;
|
||||
}
|
||||
// @include bp (sm) {
|
||||
// height: 130vw;
|
||||
// }
|
||||
// @include bp (md) {
|
||||
// height: 112vw;
|
||||
// }
|
||||
// @include bp (xl) {
|
||||
// height: 100vw;
|
||||
// }
|
||||
|
||||
// DEBUG //
|
||||
// background: rgba(red, 0.2);
|
||||
@@ -40,154 +40,160 @@
|
||||
** States and Variants
|
||||
*/
|
||||
// When dragging
|
||||
&.is-grabbing {
|
||||
&:global(.is-grabbing) {
|
||||
cursor: grabbing;
|
||||
}
|
||||
|
||||
// Cropped globe
|
||||
&--cropped {
|
||||
&-cropped {
|
||||
overflow: hidden;
|
||||
height: clamp(300px, 30vw, 500px);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
** Markers
|
||||
*/
|
||||
&__markers {
|
||||
/*
|
||||
** Markers
|
||||
*/
|
||||
:global(.globe__markers) {
|
||||
z-index: 2;
|
||||
|
||||
// Marker
|
||||
:global(.marker) {
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
top: -4px;
|
||||
left: -4px;
|
||||
padding: 4px;
|
||||
opacity: 1;
|
||||
will-change: transform;
|
||||
|
||||
// Marker
|
||||
.marker {
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
cursor: pointer;
|
||||
// Dot
|
||||
&:before {
|
||||
content: "";
|
||||
display: block;
|
||||
top: -4px;
|
||||
left: -4px;
|
||||
padding: 4px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
background: $color-secondary;
|
||||
border-radius: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
// Hover glow effect
|
||||
:global(.hover) {
|
||||
&:before {
|
||||
animation: markerPulse 1s;
|
||||
}
|
||||
}
|
||||
|
||||
// Label
|
||||
:global(.marker__label) {
|
||||
position: absolute;
|
||||
bottom: 16px;
|
||||
left: 0px;
|
||||
color: transparent;
|
||||
pointer-events: none;
|
||||
transition: color 0.4s var(--ease-quart), opacity 0.3s var(--ease-quart), transform 0.3s var(--ease-quart);
|
||||
}
|
||||
// Location city
|
||||
:global(.marker__city) {
|
||||
font-family: $font-serif;
|
||||
font-size: rem(18px);
|
||||
line-height: 1;
|
||||
|
||||
@include bp (sm) {
|
||||
font-size: rem(24px);
|
||||
}
|
||||
}
|
||||
// Location country
|
||||
:global(.marker__country) {
|
||||
display: block;
|
||||
opacity: 0.8;
|
||||
font-family: $font-sans;
|
||||
font-size: rem(8px);
|
||||
line-height: 1;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
|
||||
@include bp (sm) {
|
||||
font-size: rem(10px);
|
||||
}
|
||||
}
|
||||
|
||||
// Active
|
||||
:global(.is-active) {
|
||||
opacity: 1;
|
||||
|
||||
:global(span) {
|
||||
opacity: 1;
|
||||
will-change: transform;
|
||||
}
|
||||
:global(.marker__city) {
|
||||
color: $color-secondary;
|
||||
}
|
||||
:global(.marker__country) {
|
||||
color: $color-text;
|
||||
}
|
||||
}
|
||||
|
||||
// Dot
|
||||
&:before {
|
||||
content: "";
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
background: $color-secondary;
|
||||
border-radius: 100%;
|
||||
// Is light
|
||||
:global(.is-light) {
|
||||
:global(.is-active) {
|
||||
:global(.marker__city) {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
span {
|
||||
transition: color 0.4s var(--ease-quart), opacity 0.3s var(--ease-inout);
|
||||
}
|
||||
|
||||
// Hover glow effect
|
||||
&.hover {
|
||||
&:before {
|
||||
animation: globeMarkerPulse 1s;
|
||||
}
|
||||
}
|
||||
|
||||
// Label
|
||||
&__label {
|
||||
position: absolute;
|
||||
bottom: 16px;
|
||||
left: 0px;
|
||||
color: transparent;
|
||||
pointer-events: none;
|
||||
}
|
||||
// Location city
|
||||
&__city {
|
||||
font-family: $font-serif;
|
||||
font-size: rem(18px);
|
||||
line-height: 1;
|
||||
|
||||
@include bp (sm) {
|
||||
font-size: rem(24px);
|
||||
}
|
||||
}
|
||||
// Location country
|
||||
&__country {
|
||||
display: block;
|
||||
opacity: 0.8;
|
||||
font-family: $font-sans;
|
||||
font-size: rem(8px);
|
||||
line-height: 1;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
|
||||
@include bp (sm) {
|
||||
font-size: rem(10px);
|
||||
}
|
||||
}
|
||||
|
||||
// Active
|
||||
&.is-active {
|
||||
&, span {
|
||||
opacity: 1;
|
||||
}
|
||||
.marker {
|
||||
&__city {
|
||||
color: $color-secondary;
|
||||
}
|
||||
&__country {
|
||||
color: $color-text;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Is light
|
||||
&.is-light {
|
||||
&.is-active {
|
||||
.marker {
|
||||
&__city {
|
||||
color: #fff;
|
||||
}
|
||||
&__country {
|
||||
color: #d2b7e4;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Left positioned
|
||||
&.is-left {
|
||||
.marker {
|
||||
&__label {
|
||||
left: auto;
|
||||
right: 32px;
|
||||
}
|
||||
&__country {
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Marker is close to another one
|
||||
// Show the marker infos only on hover
|
||||
&.is-close {
|
||||
// Dot
|
||||
&:before {
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
}
|
||||
// Label
|
||||
.marker__label {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
// Show labels on hover
|
||||
&:hover {
|
||||
.marker__label {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
:global(.marker__country) {
|
||||
color: #d2b7e4;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Left positioned
|
||||
:global(.is-left) {
|
||||
:global(.marker__city) {
|
||||
left: auto;
|
||||
right: 32px;
|
||||
}
|
||||
:global(.marker__country) {
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
|
||||
// Marker is close to another one
|
||||
// Show the marker infos only on hover
|
||||
:global(.is-close) {
|
||||
// Dot
|
||||
&:before {
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
}
|
||||
// Label
|
||||
:global(.marker__label) {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, 4px, 0);
|
||||
}
|
||||
|
||||
// Show labels on hover
|
||||
&:hover {
|
||||
:global(.marker__label) {
|
||||
opacity: 1;
|
||||
transform: translate3d(0,0,0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Pulse animation
|
||||
@keyframes markerPulse {
|
||||
0% {
|
||||
box-shadow: 0 0 0 0 rgba($color-secondary, 1);
|
||||
}
|
||||
100% {
|
||||
box-shadow: 0 0 0 32px rgba(#fff, 0);
|
||||
}
|
||||
}
|
||||
@@ -1,184 +0,0 @@
|
||||
.postcard {
|
||||
--gap: clamp(8px, 0.7vw, 20px);
|
||||
display: grid;
|
||||
grid-template-columns: min(140px, 40%) 1fr;
|
||||
align-items: baseline;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
max-width: 333px;
|
||||
max-height: 222px;
|
||||
padding-top: clamp(12px, 1vw, 20px);
|
||||
padding-right: calc(var(--gap) * 2);
|
||||
padding-bottom: clamp(12px, 1.25vw, 32px);
|
||||
padding-left: var(--gap);
|
||||
background: $color-cream;
|
||||
box-shadow: 0 16px 12px rgba(#000, 0.15), 0 26px 52px rgba(#000, 0.2);
|
||||
|
||||
&__left {
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
height: 100%;
|
||||
padding-bottom: 4px;
|
||||
padding-right: var(--gap);
|
||||
border-right: 1px solid rgba(#000, 0.2);
|
||||
}
|
||||
&__right {
|
||||
position: relative;
|
||||
margin-top: auto;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
// Country Title
|
||||
&__country {
|
||||
position: relative;
|
||||
margin-top: auto;
|
||||
font-size: clamp(#{rem(14px)}, 2vw, #{rem(22px)});
|
||||
color: $color-primary;
|
||||
font-family: $font-serif;
|
||||
line-height: 1.1;
|
||||
|
||||
@include bp (sm) {
|
||||
font-size: clamp(#{rem(14px)}, 2.5vw, #{rem(22px)});
|
||||
}
|
||||
@include bp (sd) {
|
||||
font-size: clamp(#{rem(14px)}, 1.35vw, #{rem(22px)});
|
||||
}
|
||||
|
||||
strong {
|
||||
color: $color-secondary;
|
||||
font-weight: 300;
|
||||
}
|
||||
}
|
||||
|
||||
// Stamp
|
||||
&__stamp {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
|
||||
img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.frame {
|
||||
width: 32px;
|
||||
}
|
||||
.flag {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
left: -8px;
|
||||
transform: rotate(-14deg);
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
box-shadow: 0 0 0 3px $color-cream;
|
||||
border-radius: 100%;
|
||||
overflow: hidden;
|
||||
|
||||
img {
|
||||
height: 100%;
|
||||
object-fit: contain;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Address
|
||||
ul {
|
||||
margin-top: auto;
|
||||
padding-left: var(--gap);
|
||||
width: 100%;
|
||||
|
||||
li {
|
||||
display: block;
|
||||
margin-bottom: clamp(2px, 0.25vw, 4px);
|
||||
color: $color-text;
|
||||
font-size: clamp(#{rem(11px)}, 1.2vw, #{rem(16px)});
|
||||
line-height: 1.4;
|
||||
border-bottom: 1px solid #D9CABD;
|
||||
|
||||
@include bp (sd) {
|
||||
font-size: clamp(#{rem(12px)}, 0.8vw, #{rem(16px)});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
** Variants
|
||||
*/
|
||||
// Small size
|
||||
&--small {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 0;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
grid-template: 1fr 2fr / 1fr;
|
||||
padding: 12px;
|
||||
|
||||
ul {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.postcard {
|
||||
// Country
|
||||
&__left {
|
||||
height: auto;
|
||||
border: none;
|
||||
margin: auto 0;
|
||||
padding-right: 40px;
|
||||
|
||||
br {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
&__country {
|
||||
font-size: clamp(#{rem(12px)}, 3.25vw, #{rem(24px)});
|
||||
|
||||
@include bp (sm) {
|
||||
font-size: clamp(#{rem(12px)}, 1.75vw, #{rem(20px)});
|
||||
}
|
||||
@include bp (sd) {
|
||||
font-size: clamp(#{rem(12px)}, 1.5vw, #{rem(22px)});
|
||||
}
|
||||
}
|
||||
|
||||
// Infos
|
||||
&__right {
|
||||
position: static;
|
||||
|
||||
.flag {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
}
|
||||
&__stamp {
|
||||
top: 8px;
|
||||
right: 8px;
|
||||
|
||||
.frame {
|
||||
width: 28px;
|
||||
}
|
||||
}
|
||||
&__address {
|
||||
li {
|
||||
font-size: clamp(#{rem(10px)}, 2vw, #{rem(16px)});
|
||||
|
||||
@include bp (sm) {
|
||||
font-size: clamp(#{rem(11px)}, 1.1vw, #{rem(16px)});
|
||||
}
|
||||
@include bp (sd) {
|
||||
font-size: clamp(#{rem(11px)}, 0.9vw, #{rem(16px)});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user