test test

This commit is contained in:
Dalm 2022-01-25 07:10:49 +00:00
parent 71777b27e8
commit a1d26d7d2c
9 changed files with 269 additions and 0 deletions

41
Main.html Normal file
View File

@ -0,0 +1,41 @@
<html lang="en">
<head>
<title>Dalm's Art Zone!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<link rel="stylesheet" href= "mainstyles.css">
</head>
<body>
<div id=content-header><h1>Dalm Zone</h1></div>
<div id=content-container class="flex-container">
<div id=Sidebar><p>Dalm pic goes here.
<nav>
<div id=navbutton><a href=Main.html>Main</a></div>
<div id=navbutton><a href=blog.html>Blog</a></div>
<div id=navbutton><a href=gallery.html>Art</a></div>
<div id=navbutton><a href=comics.html>Comics & Zines</a></div>
<div id=navbutton><a href=originalcharacters.html>OCs</a></div>
<div id=navbutton><a href=friends>Friends & Collaborators</a></div>
<div id=navbutton><a href=mysantas>Santa Collection</a></div>
<div id=navbutton><img src="images/3d iww logo.gif" alt="Join the IWW!" class="logo">
<p><a href=iww.org>Join the Industrial Workers of the World!</a></p></div>
</nav>
</p></div>
<div id=main-content><h2>REMAIN CONTENT.</h1></div>
</div>
<footer>tilly's site :)</footer>
</body>
</html>

BIN
images/3d iww logo.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

BIN
images/islandbg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

BIN
images/islandclouds.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

BIN
images/islandfgclouds.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

BIN
images/islandskull.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

26
index.html Normal file
View File

@ -0,0 +1,26 @@
<html lang="en">
<head>
<title>WELCOME TO DALMATIONER.ART</title>
<link rel="stylesheet" href= "landingstyles.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id=bg-image-container>
<div id=bg-clouds-container>
<img src="./images/islandclouds.png" alt="clouds" id="bg-clouds">
<img src="images/islandskull.png" alt="skull" id="skull">
<img src="images/islandfgclouds.png" alt=more clouds id="fg-clouds">
<div id="welcome-container"><h1>Welcome to Dalmationer.Art.</h1>
<h2 style="text-align: center;"><a href=main.html>ENTER→</a></h2></div>
</div>
</div>
</body>
</html>

91
landingstyles.css Normal file
View File

@ -0,0 +1,91 @@
body{
background-color:black;
height: 100%;
margin: 0;
}
html{
height: 100%;
margin: 0;
}
img{
image-rendering: "pixelated";
}
#bg-image-container{
background-image: url("./images/islandbg.png");
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
overflow: hidden
}
#bg-clouds-container{
height: 100%;
position: relative;
}
#bg-clouds{
justify-content: center;
height: 100%;
animation-name: "cloudloop";
animation-duration: 60s;
animation-iteration-count: infinite;
animation-timing-function: linear;
position: absolute;
left: 0%;
top: 0px;
z-index: 0;
}
#skull{
height: 100%;
position: absolute;
left: 50%;
transform: translateX(-50%);
z-index: 1;
}
#fg-clouds{
justify-content: center;
height: 100%;
position: absolute;
left: 50%;
transform: translateX(-80%);
z-index: 2;
animation-name: "cloudloop2";
animation-duration: 40s;
animation-iteration-count: infinite;
animation-timing-function: linear;
position: "absolute";
}
#welcome-container{
position: absolute;
color: coral;
margin-top: 10%;
margin-left: 50%;
margin-right:15%;
border: coral 1px solid;
padding-left: 1%;
padding-right: 1%;
z-index: 3;
font-size: 100%;
}
@keyframes cloudloop{
0% {transform: translate(120%);}
100% {transform: translate(-120%);}
}
@keyframes cloudloop2{
0% {transform: translate(-140%);}
100% {transform: translate(140%);}
}

111
mainstyles.css Normal file
View File

@ -0,0 +1,111 @@
a{
color: #1775BB;
text-shadow: 0 0 10px white;
}
#navbutton{
border: 4px 2px 2px 4px;
border-color: #181917;
border-style: double solid solid double ;
border-radius: 10px;
font-size: large;
text-align: center;
margin-left: 5%;
margin-right: 5%;
margin-top: 10px;
font-weight: bold;
background: #EFFF96;
}
#navbutton:hover{
background: #FEFFCC;
}
body{
background-color: #1E3B27;
color: 181917;
font-family: Georgia, 'Times New Roman', Times, serif;
}
#content-container{
display: flex;
flex-direction: row;
align-items:top;
margin-top: 10px;
margin-left: 10%;
margin-right: 10%;
height: 100%;
margin-bottom: 10px;
}
#content-header{
border: 4px 2px 2px 4px;
border-color: #181917;
border-style: double solid solid double ;
text-align: center;
margin-left: 10%;
margin-right: 10%;
padding-left: 2px;
padding-right: 2px;
margin-top: 2px;
background-color: #B3EB79;
}
#sidebar{
border: 4px 2px 2px 4px;
border-color: #181917;
border-style: double solid solid double ;
position: -webkit-sticky; /* Safari */
position: sticky;
flex: 20%;
margin-right: 5px;
padding-left: 2px;
padding-right: 2px;
background-color: #B3EB79;
}
#main-content{
border: 4px 2px 2px 4px;
border-color: #181917;
border-style: double solid solid double ;
flex: 80%;
margin-left: 5px;
padding-left: 2px;
padding-right: 2px;
background-color: #B3EB79;
}
footer{
border: 4px 2px 2px 4px;
border-color: #181917;
border-style: double solid solid double ;
text-align: center;
margin-left: 10%;
margin-right: 10%;
padding-left: 2px;
padding-right: 2px;
margin-top: 2px;
background-color: #B3EB79;
}
.logo{
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
max-width: 184px;
-ms-interpolation-mode:nearest-neighbor;
/*IE 7-11*/
image-rendering: -o-crisp-edges;
/*Opera 12*/
image-rendering: -webkit-crisp-edges;
/*Safari 6-9*/
image-rendering:-moz-crisp-edges;
/*Firefox 3.6-64*/
}