Initial commit
This commit is contained in:
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# Auto detect text files and perform LF normalization
|
||||||
|
* text=auto
|
||||||
220
CSS/style.css
Normal file
220
CSS/style.css
Normal file
@@ -0,0 +1,220 @@
|
|||||||
|
body
|
||||||
|
{
|
||||||
|
font-family: Arial;
|
||||||
|
background-color: #ffd589;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr
|
||||||
|
{
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
p
|
||||||
|
{
|
||||||
|
font-size: 1.03vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.titleimg
|
||||||
|
{
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle
|
||||||
|
{
|
||||||
|
text-align: center;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menubar ul
|
||||||
|
{
|
||||||
|
display: table;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menubar ul a
|
||||||
|
{
|
||||||
|
float: left;
|
||||||
|
width: 200px;
|
||||||
|
height: 40px;
|
||||||
|
background-color: #5181ff;
|
||||||
|
line-height: 40px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 20px;
|
||||||
|
text-decoration: none;
|
||||||
|
color: white;
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menubar ul a:hover
|
||||||
|
{
|
||||||
|
background-color: #8800ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown
|
||||||
|
{
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
list-style: none;
|
||||||
|
float: left;
|
||||||
|
width: 200px;
|
||||||
|
height: 40px;
|
||||||
|
background-color: #8800ff;
|
||||||
|
line-height: 40px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 20px;
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown:hover .dropdownContent
|
||||||
|
{
|
||||||
|
display: block;
|
||||||
|
position: relative;
|
||||||
|
z-index: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdownContent
|
||||||
|
{
|
||||||
|
display: none;
|
||||||
|
background-color: #5181ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdownContent a:hover {
|
||||||
|
background-color: #8800ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdownContent a
|
||||||
|
{
|
||||||
|
text-decoration: none;
|
||||||
|
color: white;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menubar-side
|
||||||
|
{
|
||||||
|
float: left;
|
||||||
|
width: 200px;
|
||||||
|
text-align: center;
|
||||||
|
color: white;
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menubar-side ul
|
||||||
|
{
|
||||||
|
display: table;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menubar-side ul a
|
||||||
|
{
|
||||||
|
float: left;
|
||||||
|
width: 200px;
|
||||||
|
height: 40px;
|
||||||
|
background-color: #5181ff;
|
||||||
|
line-height: 40px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 20px;
|
||||||
|
text-decoration: none;
|
||||||
|
color: white;
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.global-page-subtitle
|
||||||
|
{
|
||||||
|
color: white;
|
||||||
|
opacity: 1;
|
||||||
|
text-align: center;
|
||||||
|
margin-left: 20px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
width: fit-content;
|
||||||
|
position: relative;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: #9e84ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.global-page-subtitle p
|
||||||
|
{
|
||||||
|
color: white;
|
||||||
|
opacity: 1;
|
||||||
|
position: relative;
|
||||||
|
text-align: center, justify;
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.global-page-bg
|
||||||
|
{
|
||||||
|
margin-top: 50px;
|
||||||
|
margin-left: 300px;
|
||||||
|
margin-right: 250px;
|
||||||
|
max-width: 1300px;
|
||||||
|
min-width: fit-content;
|
||||||
|
align-self: center;
|
||||||
|
background-color: #84a6ff;
|
||||||
|
opacity: 0.9;
|
||||||
|
z-index: 1;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-page-greet
|
||||||
|
{
|
||||||
|
border-radius: 20px;
|
||||||
|
background-color: #84a6ff;
|
||||||
|
color: white;
|
||||||
|
opacity: 1 !important;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 50px;
|
||||||
|
margin-left: 300px;
|
||||||
|
margin-right: 250px;
|
||||||
|
max-width: 1300px;
|
||||||
|
min-width: fit-content;
|
||||||
|
padding-top: 1px;
|
||||||
|
padding-bottom: 1px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-page-greet p
|
||||||
|
{
|
||||||
|
color: white;
|
||||||
|
opacity: 1;
|
||||||
|
position: relative;
|
||||||
|
text-align: center, justify;
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-page-title
|
||||||
|
{
|
||||||
|
border-radius: 20px;
|
||||||
|
background-color: #ff9646;
|
||||||
|
color: white;
|
||||||
|
opacity: 1 !important;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 20px;
|
||||||
|
margin-left: 50px;
|
||||||
|
margin-right: 50px;
|
||||||
|
max-width: 1200px;
|
||||||
|
min-width: fit-content;
|
||||||
|
padding-top: 1px;
|
||||||
|
padding-bottom: 1px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-page-content
|
||||||
|
{
|
||||||
|
opacity: 1;
|
||||||
|
padding-top: 20px;
|
||||||
|
margin-left: 20px;
|
||||||
|
margin-right: 20px;
|
||||||
|
position: relative;
|
||||||
|
z-index: 2;
|
||||||
|
background-color: #9e84ff;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-page-content p
|
||||||
|
{
|
||||||
|
color: white;
|
||||||
|
opacity: 1;
|
||||||
|
position: relative;
|
||||||
|
text-align: center, justify;
|
||||||
|
}
|
||||||
BIN
Downloads/Worlds/BearockS0.mcworld
Normal file
BIN
Downloads/Worlds/BearockS0.mcworld
Normal file
Binary file not shown.
BIN
Global_Resources/Bearock_SMP.png
Normal file
BIN
Global_Resources/Bearock_SMP.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
7
Global_Resources/Side Menu Entries.svg
Normal file
7
Global_Resources/Side Menu Entries.svg
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Created by Vectric (http://www.vectric.com/) -->
|
||||||
|
<svg width="3.00000000in" height="3.00000000in" viewBox="-1.50000000 -1.50000000 3.00000000 3.00000000" id="svg2" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
||||||
|
<g inkscape:groupmode="layer" id="7521dd7b-96e2-4821-9c78-0877915eef6c" inkscape:label="Layer 1" style="stroke:#000000;">
|
||||||
|
<path style="fill:none;stroke-width:0.010000;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke:#000000;" d="M -0.750000,0.250000 L 0.461325,0.250000 L 0.750000,-0.250000 L -0.461325,-0.250000 L -0.750000,0.250000 "/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 745 B |
BIN
Global_Resources/Side Panel Items.crv3d
Normal file
BIN
Global_Resources/Side Panel Items.crv3d
Normal file
Binary file not shown.
BIN
Global_Resources/bear_color_palete.png
Normal file
BIN
Global_Resources/bear_color_palete.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 88 KiB |
BIN
Global_Resources/main-menu-options.png
Normal file
BIN
Global_Resources/main-menu-options.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
51
Global_Resources/main-menu-options.svg
Normal file
51
Global_Resources/main-menu-options.svg
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created by Vectric (http://www.vectric.com/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="200"
|
||||||
|
height="40"
|
||||||
|
viewBox="-1.5 -1.5 2.0833333 0.41666667"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
sodipodi:docname="main-menu-options.svg"
|
||||||
|
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
|
||||||
|
inkscape:export-filename="/mnt/Shulker/Owen/Workspace/Bearock_Website/Global_Resources/main-menu-options.png"
|
||||||
|
inkscape:export-xdpi="96"
|
||||||
|
inkscape:export-ydpi="96"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs8" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview6"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#eeeeee"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:pageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
showgrid="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:zoom="2.3680556"
|
||||||
|
inkscape:cx="143.78885"
|
||||||
|
inkscape:cy="110.00586"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1011"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="7521dd7b-96e2-4821-9c78-0877915eef6c" />
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="7521dd7b-96e2-4821-9c78-0877915eef6c"
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
style="stroke:#000000">
|
||||||
|
<path
|
||||||
|
style="fill:#5181ff;fill-opacity:1;stroke:none;stroke-width:0.0105936;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||||
|
d="M -1.5,-1.0939269 H 0.57274007 L 0.17384125,-1.5 H -1.1011012 L -1.5,-1.0939269"
|
||||||
|
id="path2" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
48
Global_Resources/main-menu-options_hover.svg
Normal file
48
Global_Resources/main-menu-options_hover.svg
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created by Vectric (http://www.vectric.com/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="200"
|
||||||
|
height="40"
|
||||||
|
viewBox="-1.5 -1.5 2.0833333 0.41666667"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
sodipodi:docname="main-menu-options_hover.svg"
|
||||||
|
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs8" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview6"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#eeeeee"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:pageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
showgrid="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:zoom="2.3680556"
|
||||||
|
inkscape:cx="143.78885"
|
||||||
|
inkscape:cy="110.00586"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1011"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="7521dd7b-96e2-4821-9c78-0877915eef6c" />
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="7521dd7b-96e2-4821-9c78-0877915eef6c"
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
style="stroke:#000000">
|
||||||
|
<path
|
||||||
|
style="fill:#673eff;fill-opacity:1;stroke:none;stroke-width:0.0105936;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||||
|
d="M -1.5,-1.0939269 H 0.57274007 L 0.17384125,-1.5 H -1.1011012 L -1.5,-1.0939269"
|
||||||
|
id="path2" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
BIN
Members/member.html
Normal file
BIN
Members/member.html
Normal file
Binary file not shown.
2
README.md
Normal file
2
README.md
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# Bearock_Website
|
||||||
|
Code behind the Bearock SMP Website
|
||||||
101
home.html
Normal file
101
home.html
Normal file
@@ -0,0 +1,101 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="description" content="The Official Website for Bearock SMP">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="keywords" content="minecraft, minecraft bedrock, bearock, bearocksmp, bearock smp, mcbe, mc bedrock, bedrock edition, bedrock edition smp">
|
||||||
|
<title>Bearock SMP</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="./CSS/style.css">
|
||||||
|
<img class="titleimg" src="./Global_Resources/Bearock_SMP.png">
|
||||||
|
<h3 class="subtitle">A Private Survival Multiplayer Server</p>
|
||||||
|
<nav>
|
||||||
|
<div class="menubar">
|
||||||
|
<ul>
|
||||||
|
<a href="">Home</a>
|
||||||
|
<a href="./Videos/videos.html">Videos</a>
|
||||||
|
<li class="dropdown">
|
||||||
|
<a href="./Members/member.html">Members</a>
|
||||||
|
<div class="dropdownContent">
|
||||||
|
<a href="./Members/Beartech/member.html">Beartech</a>
|
||||||
|
<a href="./Members/TheEggYT/member.html">TheEggYT</a>
|
||||||
|
<a href="./Members/KatieKooky/member.html">KatieKooky</a>
|
||||||
|
<a href="./Members/EarthTuba/member.html">EarthTuba</a>
|
||||||
|
<a href="./Members/Puffy/member.html">Puffy</a>
|
||||||
|
<a href="./Members/Pancakes/member.html">Pancakes</a>
|
||||||
|
<a href="./Members/Pixeldragon/member.html">Pixeldragon</a>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="dropdown">
|
||||||
|
<a href="./About/Seasons/season.html">Seasons</a>
|
||||||
|
<div class="dropdownContent">
|
||||||
|
<a href="./About/Seasons/S0/season.html">Season 0</a>
|
||||||
|
<a href="./About/Seasons/S1/season.html">Season 1</a>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="dropdown">
|
||||||
|
<a href="./Downloads/download.html">Downloads</a>
|
||||||
|
<div class="dropdownContent">
|
||||||
|
<a href="./Downloads/Worlds/download.html">Worlds</a>
|
||||||
|
<a href="./Downloads/Packs/download.html">Addons & Packs</a>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="dropdown">
|
||||||
|
<a href="./About/about.html">About</a>
|
||||||
|
<div class="dropdownContent">
|
||||||
|
<a href="./About/Rules/about.html">Rules</a>
|
||||||
|
<a href="./About/Software/about.html">Software</a>
|
||||||
|
<a href="./About/Uptime/about.html">When's it on?</a>
|
||||||
|
<a href="./About/Specs/about.html">Server Specs</a>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div>
|
||||||
|
<div class="menubar-side">
|
||||||
|
<ul>
|
||||||
|
<a href="#News1">May. 20, 2022</a>
|
||||||
|
<hr>
|
||||||
|
<a href="#News2">Apr. 21, 2022</a>
|
||||||
|
<hr>
|
||||||
|
<a href="#News3">Apr. 20, 2022</a>
|
||||||
|
<hr>
|
||||||
|
<a href="#News4">Apr. 19, 2022</a>
|
||||||
|
<hr>
|
||||||
|
<a href="#News5">Apr. 18, 2022</a>
|
||||||
|
<hr>
|
||||||
|
<a href="#News6">Apr. 17, 2022</a>
|
||||||
|
<hr>
|
||||||
|
<a href="#News7">Apr. 16, 2022</a>
|
||||||
|
<hr>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="main-page-greet">
|
||||||
|
<p>Welcome to the Bearock SMP website! We are a few friends who play together too much on our spare time. Some of us make content on the side, others just play peacefully (Unless they have dealings with KatieKooky... You'll see soon enough what I mean. - Bear) On this site, you can find all kinds of information. Who owns the server (Me, Bear, BTW), all of our members (Active or Otherwise), their pronouns and any other information they may want to share. You can also find out about major events and builds of each season from the Seasons tab in the menu. For information and questions about the server, that can be found under the About tab.</p>
|
||||||
|
<p>Good Luck!</p>
|
||||||
|
</div>
|
||||||
|
<div class="global-page-bg">
|
||||||
|
<hr>
|
||||||
|
<div class="main-page-title">
|
||||||
|
<h2>~ Bearock SMP | News Feed ~</h2>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
<div class="main-page-content" id="News1">
|
||||||
|
<p>There's totally news here...</p>
|
||||||
|
<p>- Bear</p>
|
||||||
|
</div>
|
||||||
|
<div class="main-page-content" id="News2">
|
||||||
|
<p>There's totally news here too...</p>
|
||||||
|
<p>- Bear</p>
|
||||||
|
</div>
|
||||||
|
<div class="global-page-subtitle">
|
||||||
|
<p>Website managed by Bear [Beartech]</p>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user