initial commit

This commit is contained in:
2023-11-07 23:24:46 +01:00
commit 3b6dff9045
4 changed files with 63 additions and 0 deletions

0
blob-animation.js Normal file
View File

13
home.html Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="de">
<head>
<title>DAIALECT</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="blob-animation.js"></script>
</head>
<body>
<div class="main-title">
<h1>DAIA<br>LECT</h1>
</div>
</body>
</html>

9
noise-texture.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 1.9 MiB

41
style.css Normal file
View File

@ -0,0 +1,41 @@
body
{
background-color: #FFE49F;
color: #E07A31;
}
.main-title
{
font-family: "League Spartan Black";
font-size: 200px;
display: flex;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
width: 60%;
height: 200%;
z-index: 100;
position: relative;
}
body::before,
body::after {
position: absolute;
left: 0;
top: 0;
content: '';
width: 2048px;
height: 2048px;
z-index: 50;
opacity:100%;
}
body::before {
background: url("noise-texture.svg");
mix-blend-mode: soft-light;
}