add old website

main
Philipp Rothmann 2023-06-02 12:32:51 +02:00
parent 359df3befc
commit 2974912a45
10 changed files with 80 additions and 0 deletions

BIN
cover.webp 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 356 KiB

BIN
favicon.ico 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

23
index.html 100644
View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>implural | oceanographies</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/vnd.microsoft.icon" href="./favicon.ico">
</head>
<body>
<section id="social">
<a href="https://www.instagram.com/im_plural/" target="_blank"><img src="iconfinder_instagram_287535.png" width="44px"></a>
<a href="https://www.facebook.com/impluralmusik/" target="_blank"><img src="iconfinder_facebook_287594.png" width="44px"></a>
<a href="https://open.spotify.com/artist/2gFB8bNqBvyormvKDLTecN?si=aqMPkZtlTuurVYJfROyF2w" target="_blank"><img src="iconfinder_spotify_287525.png" width="44px"></a>
<a href="https://music.youtube.com/playlist?list=OLAK5uy_mOzLL5LKB_lxfTJOeH0L25X6dUSwAbFRY" target="_blank"><img src="iconfinder_youtube_287514.png" width="44px"></a>
<a href="https://www.amazon.de/dp/B08DW855SR/ref=cm_sw_r_wa_awdo_t1_9gOnFb17E9EY7" target="_blank"><img src="iconfinder_amazon_287608.png" width="44px"></a>
<a href="https://music.apple.com/us/album/oceanographies/1525694449" target="_blank"><img src="iconfinder_itunes_287562.png" width="44px"></a>
</section>
<section id="footer">
<i>Julian Viereck im_plural_musik@gmx.de</i>
</section>
</body>
</html>

57
style.css 100644
View File

@ -0,0 +1,57 @@
*{
padding: 0;
margin: 0;
}
html {
height: 100%;
}
h1, p {
font-family: Monospace;
color: #ffd036;
width: 100%;
padding-top: 20%;
text-align: center;
}
h1 {
font-weight: 700;
}
body {
width: 100%;
height: 100%;
background-color: #597571;
background-image: url(cover.webp);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
opacity: 1.0;
}
#social{
display: flex;
justify-content: center;
align-items: center;
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
color: yellow;
}
#footer{
display: flex;
justify-content: flex-end;
align-items: flex-end;
position: fixed;
left: 90%;
top: 95%;
transform: translate(-50%, -50%);
font-size: x-large;
color: white;
}
a {
margin-left: 10px;
}