11 Commits

5 changed files with 108 additions and 0 deletions

View File

@ -1,2 +1,3 @@
# main_local_website # main_local_website
This is a website I created for Kyaru.club

73
css/style.css Normal file
View File

@ -0,0 +1,73 @@
* {
box-sizing: border-box;
}
body {
margin: 0;
background-color:rgb(204, 204, 204)
}
.header {
background-color: #2e2828;
color: white;
text-align: center;
font-size: 35px;
margin: 0;
}
.header h1{
margin: 0;
}
.row {
display: -webkit-flex;
display: flex;
background-color: #888888;
}
.column {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
padding: 5px;
--height: 30px;
text-align: center;
text-decoration: none;
color: black;
}
.column:hover{
background-color: rgb(163, 163, 163);
}
.kyaru_main {
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
height: auto;
}
.column a {
text-decoration: none;
color: black;
width: 100%;
}
.footer {
background-color: #2e2828;
padding: 10px;
text-align: center;
color: white;
position: fixed;
width: 100%;
left: 0;
bottom: 0;
}
.footer a {
text-decoration: none;
color: white;
}
.footer a:hover {
background-color:rgb(163, 163, 163);
}
@media (max-width: 600px) {
.row {
-webkit-flex-direction: column;
flex-direction: column;
}
}

BIN
images/kyaru1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 KiB

BIN
images/kyaru_pout.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

34
index.html Normal file
View File

@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Kyaru.club!</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="" />
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="header">
<h1>Welcome to Kyaru.club!</h1>
</div>
<div class="row">
<a class="column" href="https://mt.kyaru.club">Minetest Map</a>
<a class="column" href="https://mc.kyaru.club">Minecraft Map</a>
<a class="column" href="https://git.kyaru.club">Gitea</a>
</div>
<img class="kyaru_main" src="images/kyaru_pout.jpg">
<div class="footer">
<p>Contact me on xmpp @ahhhhhh@banana.church if you are interested </p>
<p><a href="https://git.kyaru.club/jasonl8446/main_local_website"> Created by jasonl8446 2022</a></p>
</div>
</html>