-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a99b5c
commit 21aba6b
Showing
41 changed files
with
19,260 additions
and
15,186 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
.btn { | ||
@apply .block .mx-auto .px-6 .py-1 .font-sans .tracking-wide .font-medium; | ||
@apply block mx-auto px-6 py-1 type-a1 tracking-wide font-medium; | ||
} | ||
|
||
.inline-button { | ||
@apply .px-6 .py-1 .font-sans .tracking-wide; | ||
@apply px-6 py-1 type-a1 tracking-wide; | ||
} | ||
|
||
.btn-brown { | ||
@apply .bg-brown-dark .text-white; | ||
@apply bg-brown-dark text-white; | ||
} | ||
|
||
.btn-warning { | ||
@apply .bg-warning .text-white; | ||
@apply bg-warning text-white; | ||
} | ||
|
||
.btn-purple { | ||
@apply .bg-purple .text-cream-light; | ||
@apply bg-purple text-cream-light; | ||
} | ||
|
||
.btn-purple:hover { | ||
@apply .bg-purple-soft; | ||
@apply bg-purple-soft; | ||
} | ||
|
||
.btn-purple-ghost { | ||
@apply .bg-transparent .text-purple border-2 border-purple; | ||
@apply bg-transparent text-purple border-2 border-purple; | ||
} | ||
|
||
.text-link { | ||
@apply .font-sans .no-underline .font-medium; | ||
} | ||
@apply type-a1 no-underline font-medium; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,5 +15,5 @@ | |
} | ||
|
||
.reg-section-space { | ||
@apply .px-4 .py-20; | ||
} | ||
@apply px-4 py-20; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
.type-a1 { | ||
@apply font-display text-lg font-medium; | ||
} | ||
|
||
.type-h0 { | ||
@apply font-sans text-4xl md:text-5xl; | ||
} | ||
|
||
.type-h1 { | ||
@apply font-sans font-bold text-lg; | ||
} | ||
|
||
.type-h2 { | ||
@apply font-sans font-bold text-4xl; | ||
} | ||
|
||
.type-b1 { | ||
@apply font-serif text-lg; | ||
} | ||
|
||
.type-b2 { | ||
@apply font-serif text-lg italic; | ||
} | ||
|
||
.type-b3 { | ||
@apply font-serif text-base italic; | ||
} | ||
|
||
.type-b4 { | ||
@apply font-serif text-sm italic; | ||
} | ||
|
||
.type-b5 { | ||
@apply font-serif text-3xl md:text-5xl zh:text-4xl italic; | ||
} | ||
|
||
.type-b6 { | ||
@apply font-serif text-5xl; | ||
} | ||
|
||
.type-b7 { | ||
@apply font-sans text-sm; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<div class="bg-navy reg-section-space"> | ||
<div class="max-w-md mx-auto flex flex-col items-center"> | ||
<p class="heading-text mb-4 text-cream-light">{{ $title }}</p> | ||
<div class="max-w-xl mx-auto flex flex-col items-center"> | ||
<p class="type-h1 mb-4 text-cream-light">{{ $title }}</p> | ||
<span class="inline-block mb-12"> | ||
@include('svgs.logos.leaf-cream') | ||
</span> | ||
{{ $slot }} | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<div class="reg-section-space"> | ||
<div class="max-w-md mx-auto flex flex-col items-center"> | ||
<p class="heading-text mb-4 text-purple">{{ $title }}</p> | ||
<div class="max-w-xl mx-auto flex flex-col items-center"> | ||
<p class="type-h1 mb-4 text-purple">{{ $title }}</p> | ||
<span class="inline-block mb-12"> | ||
@include('svgs.logos.leaf-purple') | ||
</span> | ||
{{ $slot }} | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<div class="bg-pinky-grey reg-section-space {{ $topClass ?? '' }}"> | ||
<div class="max-w-md mx-auto flex flex-col items-center"> | ||
<p class="heading-text mb-4 text-purple">{{ $title }}</p> | ||
<div class="max-w-xl mx-auto flex flex-col items-center"> | ||
<p class="type-h1 mb-4 text-purple">{{ $title }}</p> | ||
<span class="inline-block mb-12"> | ||
@include('svgs.logos.leaf-purple') | ||
</span> | ||
{{ $slot }} | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
@component('components.info-section', ['title' => trans('homepage.elegance.heading'), 'topClass' => 'post-banner']) | ||
<p class="mb-12 text-purple text-center">{{ trans('homepage.elegance.content') }}</p> | ||
<p class="mb-12 type-b1 text-purple text-center">{{ trans('homepage.elegance.content') }}</p> | ||
<a href="{{ localUrl('/menu') }}" | ||
class="text-link text-purple hover:text-purple-soft">{{ trans('homepage.elegance.link_text') }} →</a> | ||
@endcomponent | ||
@endcomponent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<div class="reg-section-space"> | ||
@include('front.partials.heading-purple', ['text' => trans('homepage.journal.heading')]) | ||
<div class="journal-grid max-w-xl mx-auto mt-12"> | ||
<div class="journal-grid max-w-5xl mx-auto mt-12"> | ||
@foreach($posts as $post) | ||
@include('front.posts.index-card', ['post' => $post]) | ||
@endforeach | ||
</div> | ||
<div class="text-center mt-12"> | ||
<a class="text-link text-purple hover:text-purple-soft" href="{{ localUrl('/journal') }}">{{ trans('homepage.journal.link_text') }} →</a> | ||
</div> | ||
</div> | ||
</div> |
Oops, something went wrong.