added shitty logo

This commit is contained in:
Tristan Smith 2024-09-20 22:27:28 -04:00
parent 86199fb28b
commit 0cfcecd0a7
6 changed files with 10 additions and 2 deletions

View file

@ -26,6 +26,7 @@
</head> </head>
<body> <body>
<header> <header>
<img src="logo-small.png" class="logo" alt="fddl temporary logo">
<h1>fddl Programming Language</h1> <h1>fddl Programming Language</h1>
</header> </header>
<main> <main>

BIN
logo-small.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 501 KiB

BIN
logo.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 315 KiB

BIN
logo.webp~ Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 KiB

View file

@ -8,13 +8,20 @@ body {
header { header {
background-color: #282828; background-color: #282828;
padding: 20px; padding: 20px;
text-align: center; display: flex;
align-items: center;
justify-content: center;
max-width: 100%;
} }
header h1 { header h1 {
color: #ffffff; color: #ffffff;
margin: 0; margin: 0;
font-size: 2.5em; font-size: 2.5em;
} }
.logo {
max-width: 80%;
padding: 20px;
}
main { main {
max-width: 800px; max-width: 800px;
margin: 20px auto; margin: 20px auto;