-
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.
Merge pull request #8 from corigne/dev
Styles Update
- Loading branch information
Showing
10 changed files
with
1,155 additions
and
112 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export default { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
} |
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,18 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
@layer base { | ||
h1 { | ||
@apply text-2xl font-bold py-2 | ||
} | ||
h2 { | ||
@apply text-xl font-semibold py-2 | ||
} | ||
a { | ||
@apply text-sapphire font-semibold | ||
} | ||
a:hover { | ||
@apply underline | ||
} | ||
} |
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,25 +1,7 @@ | ||
<div class="content"> | ||
<h1>Under Carp-entry</h1> | ||
<img src="carp.jpg" alt="A carp being held."/> | ||
<p> | ||
<div class="flex flex-col items-center"> | ||
<h1 class="text-bold ">Under Carp-entry</h1> | ||
<img class="py-4" src="carp.jpg" alt="A carp being held."/> | ||
<h2> | ||
Coming soon! | ||
</p> | ||
</h2> | ||
</div> | ||
|
||
<style> | ||
h1 { | ||
text-align: center; | ||
} | ||
p { | ||
text-align: center; | ||
} | ||
.content { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
img { | ||
width: 700px; | ||
margin: auto; | ||
} | ||
</style> |
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,14 @@ | ||
/** @type {import('tailwindcss').Config} */ | ||
export default { | ||
content: ['./src/**/*.{html,js,svelte,ts}'], | ||
theme: { | ||
fontFamily: { | ||
sans: ['Hack', 'sans-serif'], | ||
monospace: ['Hack Mono', 'monospace'] | ||
}, | ||
extend: {}, | ||
}, | ||
plugins: [ | ||
require("@catppuccin/tailwindcss"), | ||
], | ||
} |