Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌸 feat: add new theme flower #93

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added flower/README.md
Empty file.
35 changes: 35 additions & 0 deletions flower/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!doctype html>
<html>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="output.css" rel="stylesheet">
</head>

<body>
<div class="m-auto max-w-7xl">
<div class="flex justify-between items-center">
<h1 class="text-lg">Flower 🌸</h1>
<ul class="inline-flex">
<li class="px-5">
<button class="w-auto hover:bg-slate-50 p-3 rounded-md">
About
</button>
</li>
<li class="px-5">
<button class="w-auto hover:bg-slate-50 p-3 rounded-md">
Projects
</button>
</li>
<li class="px-5">
<button class="w-auto hover:bg-slate-50 p-3 rounded-md">
Contact
</button>
</li>
</ul>
</div>
</div>
</body>

</html>
3 changes: 3 additions & 0 deletions flower/input.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
Loading