First commit

This commit is contained in:
Matic Ivešić 2025-03-13 20:06:15 +01:00
commit f9576f18d5
3 changed files with 74 additions and 0 deletions

26
index.html Normal file
View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>moxifoxi</title>
</head>
<body>
<header>
<img src="pictures/moxifoxiLogo.png" alt="moxifoxi logo">
</header>
<div id="glow">
</div>
<main>
<h2>
Under construction⚠
</h2>
</main>
</body>
</html>

BIN
pictures/moxifoxiLogo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

48
style.css Normal file
View File

@ -0,0 +1,48 @@
body{
font-family: Arial, Helvetica, sans-serif;
margin: 0%;
display: flex;
flex-direction: column;
align-items: center;
background-color: black;
height: 100%;
}
header {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
background-color: rgba(0,0,0,0.2);
backdrop-filter: blur(5px);
}
img {
height: 2em;
margin: 1em;
}
#glow {
position:absolute;
z-index: -1;
top: -50%;
width: 100%;
height: 500px;
background-image: radial-gradient(rgba(255, 77, 0, 0.5) 0%, rgba(0,0,0,0)70%);
}
h2 {
color: white;
}
main{
padding: 15em 0 15em 0;
height: 80%;
}