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>
<body>
<header>
<img src="logo-small.png" class="logo" alt="fddl temporary logo">
<h1>fddl Programming Language</h1>
</header>
<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 {
background-color: #282828;
padding: 20px;
text-align: center;
}
display: flex;
align-items: center;
justify-content: center;
max-width: 100%;
}
header h1 {
color: #ffffff;
margin: 0;
font-size: 2.5em;
}
.logo {
max-width: 80%;
padding: 20px;
}
main {
max-width: 800px;
margin: 20px auto;