Skip to content
Merged
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
2 changes: 2 additions & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ns1.vercel-dns.com
ns2.vercel-dns.com
20 changes: 10 additions & 10 deletions app/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
--foreground: #171717;
--highlight-bg: #01d101;
--highlight-fg: #ededed;
--nav-bkg: #f1f1f1;
--nav-hvr-bkg: #ddd;
}


Expand All @@ -27,6 +29,8 @@
--foreground: #ededed;
--highlight-bg: #006400;
--highlight-fg: #000;
--nav-bkg: #333;
--nav-hvr-bkg: #444;
}
}

Expand Down Expand Up @@ -55,17 +59,13 @@ body {
li {
&::marker{
content: "\2623 ";
color: white;
color: var(--foreground);
}
}

::-webkit-scrollbar {
width: 10px;
}

.dropbtn {
background-color: #04AA6D;
color: white;
color: var(--foreground);
padding: 16px;
font-size: 16px;
border: none;
Expand All @@ -84,23 +84,23 @@ li {
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
background-color: var(--nav-bkg);
min-width: 150px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
color: black;
color: var(--foreground);
padding: 12px 16px;
text-decoration: none;
display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd;
background-color: var(--nav-hvr-bkg);
}

/* Show the dropdown menu on hover */
Expand Down
6 changes: 3 additions & 3 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ export default function Home() {

console.log(message);
return (
<main className="flex flex-col items-center justify-center w-screen h-screen">
<div className="w-2/3 h-1/5 rounded-s border-dotted border-Gween-300 dark:border-Gween-600 content-center self-center text-center top-1/4 right-1/2 fixed">
<main className="flex flex-col items-center justify-center">
<div className="w-2/3 h-1/5 rounded-s border-dotted border-2 border-Gween-300 dark:border-Gween-600 content-center self-center text-center p-10">
<p>
I&#39;m <b className="bg-rainbow text-black font-serif border-black border-double border-spacing-4">&#64;GameLord2011</b>
I&#39;m <b className="bg-rainbow text-black font-serif border-white dark:border-black border-double border-4">&#64;GameLord2011</b>
</p>
</div>
<div>
Expand Down
Loading