forked bc site from personal repo

master
wsor 2020-09-03 22:46:24 -04:00
commit 25af7ca47b
6 changed files with 186 additions and 0 deletions

BIN
assets/home_1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

BIN
assets/home_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

44
css/index.css Normal file
View File

@ -0,0 +1,44 @@
.content{
width: 95%;
margin: 20px auto;
text-align: center;
background: black;
border-radius: 25px;
border: 1px solid #bebebe;
}
/* Medium screens and above */
@media (min-width: 768px) {
.content {
width: 40%;
}
}
.content p{
padding: 20px 20px;
}
.content img{
max-width: 100%;
height: auto;
}
.main{
text-align: center;
}
a{
color: #bebebe;
text-decoration: none;
}
a:hover{
color: #4f8cc9;
}
hr.formated_hr{
width: 80%;
border-top: 1px solid #bebebe;
}

73
css/main.css Normal file
View File

@ -0,0 +1,73 @@
body{
background-color: #232323;
margin: 0;
}
p{
margin:0;
color: #bebebe;
}
/*header css rules*/
header{
background-color: #181818;
border-bottom: 1px solid #bebebe;
}
header::after{
content: '';
display: table;
clear: both;
}
.header_container{
width: 80%;
margin: 0 auto;
font-weight: 400;
}
.logo{
float: left;
padding: 10px 0;
}
nav{
float: right;
}
nav ul{
margin: 0;
padding: 0;
list-style: none;
}
nav ul > li{
display: inline-block;
margin-left: 5vw;
padding: 10px 0;
}
nav ul > li > a{
color: #bebebe;
text-decoration: none;
text-transform: uppercase;
}
nav ul > li > a:hover{
color: #4f8cc9;
}
/*
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
> above use useful for slowly remove and testing to find out what is adding random space
*/

48
index.html Normal file
View File

@ -0,0 +1,48 @@
<!DOCTYPE html>
<html>
<head>
<title>BlockCity homepage</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<header>
<div class = "header_container">
<p class="logo">BlockCity</p>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href=#>Builds</a></li>
</ul>
</nav>
</div>
</header>
<div class = "content">
<div class="main">
<p>Welcome to BlockCity's website!</p>
<img src="assets/home_1.png">
<p>Welcome to Our Main Page! To see some of the builds on the <a href="bc_builds.html">Builds</a> page</p>
<hr class = "formated_hr">
<p>Come and Visit Us! </p>
<p>Server Name: BlockCity Creative <br>
Adress: nri.edgy.net <br>
port: 30000 </p>
<p>supporting connections from <br> minetest 0.4x <br> minetest 5x <br> and multicraft </p>
<hr class = "formated_hr">
<p>Owned By: wsor and Edgy1(Trump) <br>
Server Hosts: Edgy1, Maksym, wsor <br>
Server Admin: wsor</p>
<p>Admins: wsor, meme_queen, Nezrok, ScoutTrooper, Odaxelagnia <br>
Moderators: Gulf, Leutomazien, Olliy</p>
</div>
</div>
</body>
</html>

21
liscense.txt Normal file
View File

@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2020 wsor aka wsor4035
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.