diff --git a/src/routes/[country]/[location]/index.svelte b/src/routes/[country]/[location]/index.svelte index ef30e35..356d8ec 100644 --- a/src/routes/[country]/[location]/index.svelte +++ b/src/routes/[country]/[location]/index.svelte @@ -11,7 +11,17 @@
-

Hello {data.name}

+

+ + Houses + of + + + + Melbourne + +

+
{@html data.description}
diff --git a/src/style/pages/_location.scss b/src/style/pages/_location.scss new file mode 100644 index 0000000..42932db --- /dev/null +++ b/src/style/pages/_location.scss @@ -0,0 +1,38 @@ +// Location Page +.location { + // Houses Of Title + &__title { + max-width: 1164px; + margin: 0 auto; + padding: 0 32px; + font-family: $font-serif; + line-height: 1; + text-transform: uppercase; + color: $color-lightpurple; + font-size: rem(56px); + + strong { + display: block; + font-size: clamp(48px, 16vw, 160px); + color: $color-secondary; + font-weight: 300; + text-transform: none; + } + + .housesof { + grid-column: span var(--columns); + display: flex; + align-items: baseline; + // margin-left: -10vw; + + span { + margin-left: 24px; + } + } + .city { + grid-row: 2; + // grid-column: 4 / span 13; + text-align: center; + } + } +} \ No newline at end of file diff --git a/src/style/style.scss b/src/style/style.scss index c894be5..6e190e7 100644 --- a/src/style/style.scss +++ b/src/style/style.scss @@ -24,6 +24,7 @@ @import "pages/photos"; @import "pages/explore"; @import "pages/credits"; +@import "pages/location"; // Modules @import "modules/globe";