Skip to content

Commit

Permalink
changes to index & 404
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielf11 committed Sep 11, 2024
1 parent 0444861 commit 6374a89
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 21 deletions.
3 changes: 2 additions & 1 deletion 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
<link href="/dist/output.css" rel="stylesheet">
</head>
<body class="text-center bg-white text-black dark:bg-slate-800 dark:text-white">
<h1 class="text-9xl mt-72 font-black">404</h1>
<h1 class="text-8xl font-black">404</h1>
<caption>Page not found... sorry...?</caption>
<button onclick="location.href='/index.html'" type="button" class="text-gray-900 bg-white border border-gray-300 focus:outline-none hover:bg-gray-100 focus:ring-4 focus:ring-gray-200 font-medium rounded-lg text-sm px-5 py-2.5 mr-2 mb-2 dark:bg-gray-800 dark:text-white dark:border-gray-600 dark:hover:bg-gray-700 dark:hover:border-gray-600 dark:focus:ring-gray-700">go home</button>

</body>
Expand Down
22 changes: 12 additions & 10 deletions dist/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -578,18 +578,10 @@ video {
margin-top: 1.25rem;
}

.mt-72 {
margin-top: 18rem;
}

.flex {
display: flex;
}

.flex-row {
flex-direction: row;
}

.flex-col {
flex-direction: column;
}
Expand Down Expand Up @@ -657,8 +649,8 @@ video {
line-height: 1;
}

.text-9xl {
font-size: 8rem;
.text-8xl {
font-size: 6rem;
line-height: 1;
}

Expand Down Expand Up @@ -733,6 +725,11 @@ video {
font-weight: 700;
}

.hover\:text-blue-400:hover {
--tw-text-opacity: 1;
color: rgb(96 165 250 / var(--tw-text-opacity));
}

.hover\:text-blue-600:hover {
--tw-text-opacity: 1;
color: rgb(37 99 235 / var(--tw-text-opacity));
Expand All @@ -748,6 +745,11 @@ video {
color: rgb(249 115 22 / var(--tw-text-opacity));
}

.hover\:text-red-400:hover {
--tw-text-opacity: 1;
color: rgb(248 113 113 / var(--tw-text-opacity));
}

.hover\:text-teal-400:hover {
--tw-text-opacity: 1;
color: rgb(45 212 191 / var(--tw-text-opacity));
Expand Down
20 changes: 10 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
<link href="/dist/output.css" rel="stylesheet">
</head>
<body class="bg-white text-black dark:bg-slate-800 dark:text-white text-center">
<h1 class="text-5xl md:text-7xl font-black p-5 transition-all">gabrielf11.github.io</h1>
<caption class="transition-all">This website is not finished, and will likely never be.</caption>
<div class="flex flex-row justify-center mt-2">
<button onclick="location.href='https://github.com/gabrielf11'" type="button" class="text-gray-900 bg-white border border-gray-300 focus:outline-none hover:bg-gray-100 focus:ring-4 focus:ring-gray-200 font-medium rounded-lg text-sm px-5 py-2.5 mr-2 mb-2 dark:bg-gray-800 dark:text-white dark:border-gray-600 dark:hover:bg-gray-700 dark:hover:border-gray-600 dark:focus:ring-gray-700">github</button>
<button onclick="location.href='https://youtube.com/@gabrielf111'" type="button" class="text-gray-900 bg-white border border-gray-300 focus:outline-none hover:bg-gray-100 focus:ring-4 focus:ring-gray-200 font-medium rounded-lg text-sm px-5 py-2.5 mr-2 mb-2 dark:bg-gray-800 dark:text-white dark:border-gray-600 dark:hover:bg-gray-700 dark:hover:border-gray-600 dark:focus:ring-gray-700">youtube</button>
</div>
<div class="flex flex-col mt-5 text-3xl md:text-4xl no-underline">
<a href="/imbored" class="hover:text-teal-400 hover:text-5xl hover:font-bold transition-all">imbored</a>
<a href="/music" class="hover:text-orange-500 hover:text-5xl hover:font-bold transition-all">"music"</a>
<a href="/educational-duck" class="hover:text-green-500 hover:text-5xl hover:font-bold transition-all">test game</a>
<h1 class="text-5xl md:text-7xl font-black p-5 transition-all">gabrielf11</h1>
<caption class="transition-all">welcome. there's not much here at the moment...</caption>
<div class="flex flex-col mt-5">
<p>external</p>
<a href="https://youtube.com/@gabrielf111" class="text-3xl md:text-4xl hover:text-red-400 hover:text-5xl hover:font-bold transition-all">youtube</a>
<a href="https://github.com/gabrielf11" class="text-3xl md:text-4xl hover:text-blue-400 hover:text-5xl hover:font-bold transition-all">github</a>
<p>et cetera</p>
<a href="/imbored" class="text-3xl md:text-4xl hover:text-teal-400 hover:text-5xl hover:font-bold transition-all">imbored</a>
<a href="/music" class="text-3xl md:text-4xl hover:text-orange-500 hover:text-5xl hover:font-bold transition-all">"music"</a>
<a href="/educational-duck" class="text-3xl md:text-4xl hover:text-green-500 hover:text-5xl hover:font-bold transition-all">test game</a>
</div>
<!-- npx tailwindcss -i ./src/input.css -o ./dist/output.css --watch -->
</body>
Expand Down

0 comments on commit 6374a89

Please sign in to comment.