First commit
This commit is contained in:
commit
f9576f18d5
|
|
@ -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>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
|
|
@ -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%;
|
||||
}
|
||||
Loading…
Reference in New Issue