Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
MFDGaming authored Mar 20, 2021
1 parent 3d33539 commit d2fcc7f
Show file tree
Hide file tree
Showing 11 changed files with 11,261 additions and 0 deletions.
143 changes: 143 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
@font-face {
font-family: "roboto-regular";
src: url("../font/Roboto-Regular.woff") format('woff'),
url("../font/Roboto-Regular.woff2") format("woff2"),
url("../font/Roboto-Regular.ttf") format("truetype"),
url("../font/Roboto-Regular.svg") format("svg"),
url("../font/Roboto-Regular.eot") format('embedded-opentype'),
url("../font/Roboto-Regular.otf") format("opentype");
}

html, body {
margin: 0;
background-color: #1e1e1f;
background-repeat: repeat;
font-family: sans-serif;
}

button:active { /* blame mozilla firefox */
padding: 0px;
}

a { /* Blame all browsers that need this */
text-decoration: none;
color: currentColor;
}

.top-bar {
width: 100vw;
height: 5vh;
background-color: black;
}

.top-bar-button {
min-width: 8vw;
max-height: 10vw;
height: 5vh;
overflow: hidden;
outline: none;
background-color: transparent;
border: 0;
color: white;
font-size: 2vmin;

}

.top-bar-favicon {
width: auto;
height: 3vh;
float: left;
overflow: hidden;
border: 1vmin solid black;
border-radius: 50%;
}

.top-bar-button.title {
float: left;
}

.top-bar-button.title:hover {
color: cyan;
}

.top-bar-button.title:hover:active {
color: lightseagreen;
}

.top-bar-button.regular {
border-bottom: 0.2vmin solid lawngreen;
float: right;
}

.top-bar-button.regular:hover {
border-bottom: 0.2vmin solid cyan;
color: cyan;
}

.top-bar-button.regular:hover:active {
border-bottom: 0.2vmin solid lightseagreen;
color: lightseagreen;
}

.top-bar-button.regular.selected {
border-bottom: 0.2vmin solid lightseagreen;
}

.top-bar-button.regular.selected:hover {
border-bottom: 0.2vmin solid cyan;
color: cyan;
}

.top-bar-button.regular.selected:hover:active {
border-bottom: 0.2vmin solid lightseagreen;
color: lightseagreen;
}

.wall {
width: 100vw;
height: 40vh;
background-image: url("../img/wall.jpg");
background-repeat: repeat;
color: white;
text-align: center;
display: table-cell;
vertical-align: middle;
}

.wall-title {
font-size: 10vmin;
font-family: "roboto-regular";
}

.wall-subtitle {
font-size: 3vmin;
font-family: monospace;
}

.content {
width: 100vw;
height: 45vh;
overflow: hidden;
}

.content-main {
margin: auto;
width: 80vw;
height: 45vh;
overflow: hidden;
background-color: #313233;
border: 2vmin solid #313233;
color: white;
}

.footer-bar {
width: 100vw;
height: 10vh;
overflow: hidden;
color: white;
display: table-cell;
vertical-align: middle;
text-align: center;
font-size: 2vmin;
background-color: black;
}
Binary file added favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added font/Roboto-Regular.eot
Binary file not shown.
Binary file added font/Roboto-Regular.otf
Binary file not shown.
11,080 changes: 11,080 additions & 0 deletions font/Roboto-Regular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added font/Roboto-Regular.ttf
Binary file not shown.
Binary file added font/Roboto-Regular.woff
Binary file not shown.
Binary file added font/Roboto-Regular.woff2
Binary file not shown.
Binary file added img/background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/wall.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Podrum</title>
<link rel="shortcut icon" href="./favicon.png" type="image/png" />
<link rel="stylesheet" href="./css/style.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<nav class="top-bar">
<img class="top-bar-favicon" src="./favicon.png" />
<button class="top-bar-button title"><a href="./index.html">Podrum</a></button>
<button class="top-bar-button regular"><a href="./plugins.html">Plugins</a></button>
<button class="top-bar-button regular"><a href="./forum.html">Forum</a></button>
<button class="top-bar-button regular"><a href="https://discord.gg/ScSsnwQ4kW">Discord</a></button>
<button class="top-bar-button regular"><a href="./downloads.html">Downloads</a></button>
<button class="top-bar-button regular selected"><a href="./index.html">Home</a></button>
</nav>
</header>
<main>
<div class="wall">
<h1 class="wall-title">Podrum</h1>
<h2 class="wall-subtitle">A server software for Minecraft Bedrock Edition</h2>
</div>
<div class="content">
<div class="content-main">
WIP
</div>
</div>
</main>
<footer class="footer-bar">
<div>
<p>Copyright MFDGaming 2021</p>
</div>
</footer>
</body>
</html>

0 comments on commit d2fcc7f

Please sign in to comment.