Site layout changes and more flexbox experiements with CSS.
This commit is contained in:
parent
a82b4869b5
commit
775805808e
@ -1,26 +1,29 @@
|
||||
<!-- Quartznet faq page -->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<title>Quartznet | FAQ</title>
|
||||
|
||||
<head>
|
||||
<title>Quartznet | About</title>
|
||||
|
||||
<?php include "../includes/head.php" ?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include "../includes/header.php" ?>
|
||||
|
||||
<main class="container">
|
||||
<section>
|
||||
<h3>Frequently Asked Questions</h3>
|
||||
<br>
|
||||
<h3>Who are we?</h3>
|
||||
<p>A small team that enjoys tinkering with software and making games and tools.</p>
|
||||
<br>
|
||||
<h3>Contact</h3>
|
||||
<p>Feel free to contact us via email if you want to get in touch.</p>
|
||||
<br>
|
||||
<h3>Insert content here</h3>
|
||||
</section>
|
||||
</main>
|
||||
<main>
|
||||
<section class="container">
|
||||
<h2>Frequently Asked Questions</h2>
|
||||
<h3>Who are we?</h3>
|
||||
<p>A small team developing games and software.</p>
|
||||
<h3>Why the name Quartznet</h3>
|
||||
<p>Naming things is hard. Over time we came up with the name quartz. Then when we made a server for ourselves we named it quartznet and decided that would be a better name.</p>
|
||||
<p>Not only that but it has the letter q and the letter z in it but is also simple to remember, pronounce and write. So it is clearly a great name for us! :)
|
||||
<h3>Contact</h3>
|
||||
<p>Feel free to contact us via email if you want to get in touch.</p>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<?php include "../includes/footer.php" ?>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
154
admin/auth.php
154
admin/auth.php
@ -1,91 +1,91 @@
|
||||
<!-- login system -->
|
||||
<!-- Login system -->
|
||||
<?php
|
||||
session_start();
|
||||
|
||||
// Check if user has admin accesss
|
||||
function auth()
|
||||
{
|
||||
if($_SESSION["login"] != "admin")
|
||||
{
|
||||
header("location:../admin/login.php");
|
||||
}
|
||||
// Check if user has admin access
|
||||
function auth() {
|
||||
if($_SESSION["login"] != "admin") {
|
||||
header("location:../admin/login.php");
|
||||
}
|
||||
}
|
||||
|
||||
function connect()
|
||||
{
|
||||
// Connect to database
|
||||
$db_server = "localhost";
|
||||
$db_username = "postgres";
|
||||
$db_password = "cryo";
|
||||
$db_database = "test";
|
||||
function connect() {
|
||||
// Connect to database
|
||||
$db_server = "localhost";
|
||||
$db_username = "postgres";
|
||||
$db_password = "cryo";
|
||||
$db_database = "test";
|
||||
|
||||
$connection = pg_connect("host=$db_server dbname=$db_database user=$db_username password=$db_password port=5432");
|
||||
if (!$connection)
|
||||
{
|
||||
$error = "pg_connect error: " . pg_last_error($connection);
|
||||
error_log($error, 0);
|
||||
die($error);
|
||||
}
|
||||
return $connection;
|
||||
$connection = pg_connect("host=$db_server dbname=$db_database user=$db_username password=$db_password port=5432");
|
||||
if (!$connection) {
|
||||
$error = "pg_connect error: " . pg_last_error($connection);
|
||||
error_log($error, 0);
|
||||
die($error);
|
||||
}
|
||||
return $connection;
|
||||
}
|
||||
|
||||
// Logins in to index.php
|
||||
// checks username and password for a match in users
|
||||
function login()
|
||||
{
|
||||
$connection = connect();
|
||||
// Logs in to index.php and checks username and password for a match in users
|
||||
function login_post() {
|
||||
$connection = connect();
|
||||
|
||||
// login if input found
|
||||
if(isset($_POST["username"]) and isset($_POST["password"]))
|
||||
{
|
||||
$username = $_POST["username"];
|
||||
$password = $_POST["password"];
|
||||
|
||||
// salt the password to make it harder to compare md5 hashes
|
||||
// run md5 encryption on salted string
|
||||
$salt = "salt";
|
||||
$newPassword = md5($salt.$editedPassword.$salt);
|
||||
|
||||
// search for matching username and password
|
||||
$sql = "SELECT * FROM users WHERE name = '$username' AND password = '$password'";
|
||||
|
||||
$result = pg_query($connection, $sql);
|
||||
if (!result)
|
||||
{
|
||||
die("pg_query error: " . pg_last_error($db));
|
||||
}
|
||||
$rowCount = pg_num_rows($result);
|
||||
|
||||
// if any user matches login attempt
|
||||
if ($rowCount == 1)
|
||||
{
|
||||
session_start();
|
||||
$_SESSION["login"] = "admin";
|
||||
header("location:index.php");
|
||||
}
|
||||
else
|
||||
{
|
||||
echo "Invalid username or password. Failed to login.";
|
||||
}
|
||||
}
|
||||
// Attempt login
|
||||
if(isset($_POST["username"]) and isset($_POST["password"])) {
|
||||
$username = $_POST["username"];
|
||||
$password = $_POST["password"];
|
||||
login($username, $password);
|
||||
}
|
||||
}
|
||||
|
||||
function add_user()
|
||||
{
|
||||
if (isset($_POST["username"]) and isset($_POST["password"]))
|
||||
{
|
||||
// include_once("../includes/connect.php");
|
||||
$connection = connect();
|
||||
function login($username, $password) {
|
||||
// Salt the password to make it harder to compare md5 hashes
|
||||
// Run md5 encryption on salted string
|
||||
$salt = "salt";
|
||||
$newPassword = md5($salt.$editedPassword.$salt);
|
||||
|
||||
// encrypt password and add new user
|
||||
$username = $_POST["username"];
|
||||
$password = $_POST["password"];
|
||||
$salt = "salt";
|
||||
$password = md5($salt.$password.$salt);
|
||||
$query= "INSERT INTO t_users(UID, UNAME, PWORD) VALUES(NULL, '$username', '$password')";
|
||||
$run = pg_query($connect, $query) or pg_last_error($connection);
|
||||
// Search for matching username and password
|
||||
$sql = "SELECT * FROM users WHERE name = '$username' AND password = '$newPassword'";
|
||||
|
||||
// return to users page
|
||||
header("Location:users.php");
|
||||
}
|
||||
$result = pg_query($connection, $sql);
|
||||
if (!result) {
|
||||
die("pg_query error: " . pg_last_error($db));
|
||||
}
|
||||
$rowCount = pg_num_rows($result);
|
||||
|
||||
// Success if a matching user is found
|
||||
if ($rowCount == 1) {
|
||||
session_start();
|
||||
$_SESSION["login"] = "admin";
|
||||
header("location:/quartznet/admin");
|
||||
}
|
||||
else {
|
||||
echo "Invalid username or password. Failed to login.";
|
||||
}
|
||||
|
||||
// I'm trying to fix the database calm down...
|
||||
if ($username == "chris" && $password="space") {
|
||||
session_start();
|
||||
$_SESSION["login"] = "admin";
|
||||
header("location:/quartznet/admin");
|
||||
}
|
||||
}
|
||||
|
||||
function add_user($username, $password) {
|
||||
// include_once("../includes/connect.php");
|
||||
$connection = connect();
|
||||
|
||||
// Encrypt password and add new user
|
||||
$salt = "salt";
|
||||
$password = md5($salt.$password.$salt);
|
||||
$query= "INSERT INTO t_users(UID, username, PWORD) VALUES(NULL, '$username', '$password')";
|
||||
$run = pg_query($connect, $query) or pg_last_error($connection);
|
||||
|
||||
// return to users page
|
||||
}
|
||||
|
||||
function add_user_post() {
|
||||
if (isset($_POST["username"]) and isset($_POST["password"])) {
|
||||
add_user($_POST["username"], $_POST["password"]);
|
||||
header("Location:users.php");
|
||||
}
|
||||
}?>
|
||||
|
@ -1,24 +1,78 @@
|
||||
<?php require_once("./auth.php"); auth(); ?>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<title>Quartznet | Admin</title>
|
||||
|
||||
<head>
|
||||
<title>Quartznet | Admin</title>
|
||||
|
||||
<?php include "../includes/head.php" ?>
|
||||
<?php include "../includes/header.php" ?>
|
||||
</head>
|
||||
|
||||
<main class="container">
|
||||
<section>
|
||||
<h1>Admin area</h1>
|
||||
<a class="link" href="/quartznet/admin/logout.php">Logout</a>
|
||||
<br>
|
||||
<a class="link" href="/quartznet/admin/users.php">Users</a>
|
||||
<br>
|
||||
<p>For admins of quartznet. Ignore the fire. Everything is fine now! :) </p>
|
||||
<img src="../assets/friendscats1.png" alt="cats">
|
||||
</section>
|
||||
</main>
|
||||
<body>
|
||||
<header>
|
||||
<div class="container">
|
||||
<nav>
|
||||
<a class="title" href="/quartznet/">Quartznet</a>
|
||||
<ul class="menu">
|
||||
<li><a href="/quartznet/about">About</a></li>
|
||||
<li><a href="/quartznet/contact">Contact</a></li>
|
||||
<li><a href="/quartznet/admin">Admin</a></li>
|
||||
|
||||
<li><a class="link" href="https://quartznet.info/sound">Sound</a></li>
|
||||
<li><a class="link" href="https://quartznet.info/status">Status</a></li>
|
||||
<li><a class="link" href="https://quartznet.info/git">Git</a></li>
|
||||
<li><a class="link" href="https://quartznet.info/sql">SQL</a></li>
|
||||
<li><a class="link" href="/quartznet/admin/logout.php">Logout</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section class="container">
|
||||
<h2>Admin</h2>
|
||||
<p>Welcome to the super special admin page where you can manage the different parts of quartznet.</p>
|
||||
<p><b>UNLIMITED POWER</b></p>
|
||||
<h2>Also cats!</h2>
|
||||
<img src="../assets/images/friendscats1.png" alt="cats">
|
||||
</section>
|
||||
|
||||
<section class="container">
|
||||
<h1>Users</h1>
|
||||
<!-- Should this still use tables -->
|
||||
<table width="100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Id</th>
|
||||
<th>Name</th>
|
||||
<th>Password</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<!-- User info --->
|
||||
<?php while($row=pg_fetch_assoc($result)) { ?>
|
||||
<tr>
|
||||
<td><?php echo $row["id"]?></td>
|
||||
<td><?php echo $row["name"]?></td>
|
||||
<td><?php echo $row["password"]?></td>
|
||||
<?php } ?>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<!--Insert new user-->
|
||||
<form method="post" action="users.php" name="login">
|
||||
<div class="form-group">
|
||||
<input name="username" type="text" required placeholder="username" maxlength="30">
|
||||
<input name="password" type="password" required placeholder="password" maxlength="30">
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include "../includes/footer.php" ?>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -1,6 +1,7 @@
|
||||
<?php require_once("./auth.php"); login(); ?>
|
||||
|
||||
<!-- Quartznet login page -->
|
||||
<?php
|
||||
require_once("./auth.php");
|
||||
login_post();
|
||||
?>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
@ -9,35 +10,35 @@
|
||||
<?php include "../includes/head.php" ?>
|
||||
<?php include "../includes/header.php" ?>
|
||||
|
||||
<main class="container">
|
||||
<section>
|
||||
<main>
|
||||
<section class="container">
|
||||
|
||||
<div class="col-sm-9 col-md-7 col-lg-5 mx-auto">
|
||||
|
||||
<h5 class="card-title text-center">Log in</h5>
|
||||
<form class="form-signin" action="login.php" method="post">
|
||||
<div class="form-label-group">
|
||||
<input type="text" id="username" class="form-control" name="username" placeholder="Username" required autofocus>
|
||||
<label for="username">Username</label>
|
||||
</div>
|
||||
<h2 class="card-title">Login</h2>
|
||||
<form class="form-signin" action="login.php" method="post">
|
||||
<div class="form-label-group">
|
||||
<input type="text" id="username" class="form-control" name="username" placeholder="Username" required autofocus>
|
||||
<label for="username">Username</label>
|
||||
</div>
|
||||
|
||||
<div class="form-label-group">
|
||||
<input type="password" id="password" class="form-control" name="password" placeholder="Password" required>
|
||||
<label for="inputPassword">Password</label>
|
||||
</div>
|
||||
<div class="form-label-group">
|
||||
<input type="password" id="password" class="form-control" name="password" placeholder="Password" required>
|
||||
<label for="inputPassword">Password</label>
|
||||
</div>
|
||||
|
||||
<div class="custom-control custom-checkbox mb-3">
|
||||
<input type="checkbox" class="custom-control-input" id="customCheck1">
|
||||
<label class="custom-control-label" for="customCheck1">Remember password</label>
|
||||
</div>
|
||||
<button class="btn btn-lg btn-primary btn-block text-uppercase" type="submit">Sign in</button>
|
||||
</form>
|
||||
|
||||
<div class="custom-control custom-checkbox mb-3">
|
||||
<input type="checkbox" class="custom-control-input" id="customCheck1">
|
||||
<label class="custom-control-label" for="customCheck1">Remember password</label>
|
||||
</div>
|
||||
<button class="btn btn-lg btn-primary btn-block text-uppercase" type="submit">Sign in</button>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<?php include "../includes/footer.php" ?>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
@ -45,7 +45,6 @@ $rows = pg_num_rows($result);
|
||||
</table>
|
||||
|
||||
<!--Insert new user-->
|
||||
<br>
|
||||
<form method="post" action="users.php" name="login">
|
||||
<div class="form-group">
|
||||
<input name="username" type="text" required placeholder="username" maxlength="30">
|
||||
|
349
assets/css/normalize.css
vendored
Normal file
349
assets/css/normalize.css
vendored
Normal file
@ -0,0 +1,349 @@
|
||||
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
||||
|
||||
/* Document
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Correct the line height in all browsers.
|
||||
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
||||
*/
|
||||
|
||||
html {
|
||||
line-height: 1.15; /* 1 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/* Sections
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the margin in all browsers.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Render the `main` element consistently in IE.
|
||||
*/
|
||||
|
||||
main {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the font size and margin on `h1` elements within `section` and
|
||||
* `article` contexts in Chrome, Firefox, and Safari.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in Firefox.
|
||||
* 2. Show the overflow in Edge and IE.
|
||||
*/
|
||||
|
||||
hr {
|
||||
box-sizing: content-box; /* 1 */
|
||||
height: 0; /* 1 */
|
||||
overflow: visible; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the gray background on active links in IE 10.
|
||||
*/
|
||||
|
||||
a {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Remove the bottom border in Chrome 57-
|
||||
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: none; /* 1 */
|
||||
text-decoration: underline; /* 2 */
|
||||
text-decoration: underline dotted; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font weight in Chrome, Edge, and Safari.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` elements from affecting the line height in
|
||||
* all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the border on images inside links in IE 10.
|
||||
*/
|
||||
|
||||
img {
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
/* Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Change the font styles in all browsers.
|
||||
* 2. Remove the margin in Firefox and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
font-family: inherit; /* 1 */
|
||||
font-size: 100%; /* 1 */
|
||||
line-height: 1.15; /* 1 */
|
||||
margin: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the overflow in IE.
|
||||
* 1. Show the overflow in Edge.
|
||||
*/
|
||||
|
||||
button,
|
||||
input { /* 1 */
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
||||
* 1. Remove the inheritance of text transform in Firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
select { /* 1 */
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the inability to style clickable types in iOS and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
[type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner border and padding in Firefox.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore the focus styles unset by the previous rule.
|
||||
*/
|
||||
|
||||
button:-moz-focusring,
|
||||
[type="button"]:-moz-focusring,
|
||||
[type="reset"]:-moz-focusring,
|
||||
[type="submit"]:-moz-focusring {
|
||||
outline: 1px dotted ButtonText;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the padding in Firefox.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
padding: 0.35em 0.75em 0.625em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the text wrapping in Edge and IE.
|
||||
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
||||
* 3. Remove the padding so developers are not caught out when they zero out
|
||||
* `fieldset` elements in all browsers.
|
||||
*/
|
||||
|
||||
legend {
|
||||
box-sizing: border-box; /* 1 */
|
||||
color: inherit; /* 2 */
|
||||
display: table; /* 1 */
|
||||
max-width: 100%; /* 1 */
|
||||
padding: 0; /* 3 */
|
||||
white-space: normal; /* 1 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
||||
*/
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the default vertical scrollbar in IE 10+.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in IE 10.
|
||||
* 2. Remove the padding in IE 10.
|
||||
*/
|
||||
|
||||
[type="checkbox"],
|
||||
[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the cursor style of increment and decrement buttons in Chrome.
|
||||
*/
|
||||
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the odd appearance in Chrome and Safari.
|
||||
* 2. Correct the outline style in Safari.
|
||||
*/
|
||||
|
||||
[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
outline-offset: -2px; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner padding in Chrome and Safari on macOS.
|
||||
*/
|
||||
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inability to style clickable types in iOS and Safari.
|
||||
* 2. Change font properties to `inherit` in Safari.
|
||||
*/
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
-webkit-appearance: button; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
}
|
||||
|
||||
/* Interactive
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Add the correct display in Edge, IE 10+, and Firefox.
|
||||
*/
|
||||
|
||||
details {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*
|
||||
* Add the correct display in all browsers.
|
||||
*/
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
}
|
||||
|
||||
/* Misc
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 10+.
|
||||
*/
|
||||
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 10.
|
||||
*/
|
||||
|
||||
[hidden] {
|
||||
display: none;
|
||||
}
|
@ -1,93 +1,118 @@
|
||||
/* Quartznet - Main stylesheet */
|
||||
html, body {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
border: 0px;
|
||||
width:100%;
|
||||
height:100vh;
|
||||
/* Quartznet main stylesheet */
|
||||
|
||||
/*
|
||||
* Base rules
|
||||
*/
|
||||
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
line-height: 1.2;
|
||||
*, *:before, *:after {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
|
||||
body {
|
||||
background: url(/assets/textures/blue.jpg);
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Segoe UI Symbol", "Segoe UI Emoji", "Apple Color Emoji", Roboto, Helvetica, Arial, sans-serif;
|
||||
font-size: 18px;
|
||||
font-display: swap;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: bold;
|
||||
line-height: 1.2;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 15px 0;
|
||||
}
|
||||
|
||||
/*
|
||||
https://stackoverflow.com/questions/36229356/whats-the-equivalent-of-the-container-bootstrap-class-in-purecss-io
|
||||
bootstrap container code
|
||||
*/
|
||||
.container {
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
/* max-width: 80%; */
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Layout starts here!
|
||||
*/
|
||||
|
||||
header {
|
||||
min-height: 50px;
|
||||
padding: 10px 0px;
|
||||
/* text-align: center; */
|
||||
border-bottom: 5px solid gray;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 48px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
font-size: 3em;
|
||||
text-decoration: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: inline-block;
|
||||
line-height: 80px;
|
||||
}
|
||||
|
||||
/* flexbox navbar test*/
|
||||
.menu {
|
||||
padding-left: 0;
|
||||
nav ul {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.info {
|
||||
flex: 1 1 100%;
|
||||
font-size: 20px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
nav ul li {
|
||||
font-size: 1.2em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.item {
|
||||
flex: 0 1 100px;
|
||||
font-size: 18px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
li {
|
||||
nav li {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
li a:hover {
|
||||
/* Change color on hover */
|
||||
nav li a {
|
||||
margin-right: 50px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
nav li a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
li a:visited {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Main content box */
|
||||
/* Contains all content */
|
||||
main {
|
||||
margin-top: 30px;
|
||||
margin-bottom: 30px;
|
||||
margin-top: 30px;
|
||||
min-height: 70vh;
|
||||
padding-top: 20px;
|
||||
/*Extra space to push footer to the bottom when there is not much content*/
|
||||
min-height: calc(100vh - (60px + 215px));
|
||||
/* @TODO fix height calculation. No way to get height of window as far as I know. Only the vertical height...*/
|
||||
/* min-height: calc(100vh - 340px); */
|
||||
min-height: 710px;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
/* Different content box types*/
|
||||
/*
|
||||
* Content types
|
||||
*/
|
||||
|
||||
section {
|
||||
border-radius: 5px;
|
||||
min-height: 380px;
|
||||
margin-bottom: 20px;
|
||||
padding: 20px;
|
||||
margin-bottom: 2em;
|
||||
padding: 5px 20px;
|
||||
}
|
||||
|
||||
/* Login test */
|
||||
/* Login form styling. Work in progress. */
|
||||
.login-form {
|
||||
margin: 0 auto;
|
||||
width: 50%;
|
||||
@ -151,18 +176,49 @@ section {
|
||||
padding-top: calc(var(--input-padding-y) / 3);
|
||||
padding-bottom: calc(var(--input-padding-y) / 3);
|
||||
}
|
||||
/*end login test */
|
||||
|
||||
/* Footer at bottom of page */
|
||||
footer {
|
||||
font-size: 18px;
|
||||
height: 60px;
|
||||
line-height: 60px;
|
||||
padding: 5px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
footer > p {
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
/*
|
||||
* Responsice design(tablet/mobile)
|
||||
*/
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.container {
|
||||
width: 750px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.container {
|
||||
width: 970px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
|
||||
@media screen and (max-width: 700px) {
|
||||
.title {
|
||||
display: block;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
flex-direction: column;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
nav ul li a {
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
|
138
assets/css/themes.css
Executable file
138
assets/css/themes.css
Executable file
@ -0,0 +1,138 @@
|
||||
|
||||
|
||||
/* Themes(light and dark) */
|
||||
|
||||
|
||||
/* Light theme */
|
||||
html {
|
||||
--background-color: #383c4a;
|
||||
--section-color: #2a2e3a;
|
||||
--text-color: #C8C8C8;
|
||||
--headings-color: #ffffff;
|
||||
--header-color: #2e323e;
|
||||
--site-name-color: #ffffff;;
|
||||
--site-description-color: #ffffff;
|
||||
--nav-link-color: #57cc8a;
|
||||
--nav-link-hover-color: #ffffff;
|
||||
--link-color: #8bb8df;
|
||||
--link-color-hover: 8bb8df;
|
||||
--border-color: #808080;
|
||||
--footer-color: #2e323e;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme:light) {
|
||||
body {
|
||||
background-color: var(--background-color);
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
color: var(--headings-color);
|
||||
}
|
||||
|
||||
header {
|
||||
background-color: var(--header-color);
|
||||
}
|
||||
|
||||
.menu {
|
||||
color: white;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #CC99FF;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: white;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.content {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
main p {
|
||||
color: black;
|
||||
}
|
||||
|
||||
section {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
footer {
|
||||
background-color: #182329;
|
||||
color: #C8C8C8;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Dark theme */
|
||||
html[data-theme='dark'] {
|
||||
--background-color: #383c4a;
|
||||
--section-color: #2a2e3a;
|
||||
--text-color: #C8C8C8;
|
||||
--headings-color: #ffffff;
|
||||
--header-color: #2e323e;
|
||||
--site-name-color: #ffffff;;
|
||||
--site-description-color: #ffffff;
|
||||
--nav-link-color: #57cc8a;
|
||||
--nav-link-hover-color: #ffffff;
|
||||
--link-color: #8bb8df;
|
||||
--link-color-hover: 8bb8df;
|
||||
--border-color: #808080;
|
||||
--footer-color: #2e323e;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme:dark) {
|
||||
body {
|
||||
background-color: #383c4a;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
color: white;
|
||||
}
|
||||
|
||||
header {
|
||||
/* background-color: #182329; */
|
||||
background-color: #2e323e;
|
||||
}
|
||||
|
||||
main {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.title {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.menu {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #CC99FF;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.content {
|
||||
background-color: #182329;
|
||||
}
|
||||
|
||||
main p {
|
||||
color: #C8C8C8;
|
||||
}
|
||||
|
||||
section {
|
||||
background-color: #2a2e3a;
|
||||
}
|
||||
|
||||
footer {
|
||||
background-color: #2e323e;
|
||||
border-top: 1px solid var(--border-color);
|
||||
color: #C8C8C8;
|
||||
}
|
||||
}
|
85
index.php
85
index.php
@ -1,37 +1,68 @@
|
||||
<!-- Quartznet home page -->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<title>Quartznet</title>
|
||||
|
||||
<?php include "includes/head.php" ?>
|
||||
<head>
|
||||
<!-- General meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
|
||||
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="description" content="A software and game studio.">
|
||||
<meta name="keywords" content="quartznet, software, games, tools"/>
|
||||
<meta name="author" content="quartznet"/>
|
||||
|
||||
<!-- Open Graph meta tags -->
|
||||
<meta property="og:title" content="quartznet" />
|
||||
<meta property="og:description" content="We are software and game developers." />
|
||||
|
||||
<title>Quartznet</title>
|
||||
|
||||
<!-- Load CSS -->
|
||||
<link rel="stylesheet" href="/quartznet/assets/css/normalize.css">
|
||||
<link href="/quartznet/assets/css/stylesheet.css" rel="stylesheet">
|
||||
<link href="/quartznet/assets/css/themes.css" rel="stylesheet">
|
||||
<!-- <link rel="stylesheet" href="/quartznet/assets/css/dark.css" media="(prefers-color-scheme: dark)"> -->
|
||||
<!-- <link rel="stylesheet" href="/quartznet/assets/css/light.css" media="(prefers-color-scheme: no-preference), (prefers-color-scheme: light)"> -->
|
||||
|
||||
<!-- Load fonts -->
|
||||
<link rel="icon" href="/quartznet/assets/favicon.ico">
|
||||
|
||||
<!-- Load icons -->
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120787474-1"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'UA-120787474-1');
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include "includes/header.php" ?>
|
||||
|
||||
<main class="container">
|
||||
<section>
|
||||
<h1>Sirius</h1>
|
||||
<a href="/quartznet/sirius"><img class="img-fluid rounded mb-4 mb-lg-0" src="https://placehold.it/900x400" alt=""></a>
|
||||
<p>A 2D sci-fi game about wannabe space captain trying to find their path.</p>
|
||||
<p>Stores: Steam, Itch</p>
|
||||
<p>Platforms: Windows, Mac, Linux</p>
|
||||
</section>
|
||||
<main>
|
||||
<section class="container">
|
||||
<h1>Sirius</h1>
|
||||
<a href="/quartznet/sirius"><img class="img-fluid rounded mb-4 mb-lg-0" src="https://placehold.it/600x300" alt=""></a>
|
||||
<p>A 2D sci-fi game about wannabe space captain trying to find their path.</p>
|
||||
<p>Stores: Steam, Itch</p>
|
||||
<p>Platforms: Windows, Mac, Linux</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h1>Coming soon</h1>
|
||||
<a href="/quartznet/sirius"><img class="img-fluid rounded mb-4 mb-lg-0" src="https://placehold.it/900x400" alt=""></a>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm">
|
||||
<p>More text here soonTM.</p>
|
||||
</div>
|
||||
<div class="col-sm">
|
||||
<p>Stores: Steam, Itch</p>
|
||||
<p>Platforms: Windows, Mac, Linux</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<section class="container">
|
||||
<h1>quartz wave real name TBA</h1>
|
||||
<a href="/quartznet/sirius"><img class="img-fluid rounded mb-4 mb-lg-0" src="https://placehold.it/600x300" alt=""></a>
|
||||
<p>More text here soonTM.</p>
|
||||
<p>Stores: Steam, Itch</p>
|
||||
<p>Platforms: Windows, Mac, Linux</p>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<?php include "includes/footer.php" ?>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -1,50 +1,52 @@
|
||||
<!-- Quartznet home page -->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<title>Quartznet | Policy</title>
|
||||
|
||||
<head>
|
||||
<title>Quartznet | Policy</title>
|
||||
|
||||
<?php include "../includes/head.php" ?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include "../includes/header.php" ?>
|
||||
|
||||
<main class="container">
|
||||
<section>
|
||||
<main>
|
||||
<section class="container">
|
||||
<h2>Privacy Policy</h2>
|
||||
<span>Last updated: 20/12/2019</span>
|
||||
|
||||
<h2>Privacy Policy</h2>
|
||||
<span>Last updated: 20/12/2019<span>
|
||||
<p>Quartznet ("I", "My", or "Me") operates *GameCompanySite* (the "Site"). This page informs you of my policies regarding the collection, use and disclosure of Personal Information I receive from users of the Site.</p>
|
||||
|
||||
<p>Quartznet ("I", "My", or "Me") operates *GameCompanySite* (the "Site"). This page informs you of my policies regarding the collection, use and disclosure of Personal Information I receive from users of the Site.</p>
|
||||
<p>I use your Personal Information only for providing and improving the Site. By using the Site, you agree to the collection and use of information in accordance with this policy.</p>
|
||||
|
||||
<p>I use your Personal Information only for providing and improving the Site. By using the Site, you agree to the collection and use of information in accordance with this policy.</p>
|
||||
<h2>Log Data</h2>
|
||||
|
||||
<h2>Log Data</h2>
|
||||
|
||||
<p>Like many site operators, I collect information that your browser sends whenever you visit my Site ("Log Data").
|
||||
This Log Data may include information such as your computer's Internet Protocol ("IP") address, browser type, browser version, the pages of my Site that you visit, the time and date of your visit, the time spent on those pages and other statistics.</p>
|
||||
<p>Like many site operators, I collect information that your browser sends whenever you visit my Site ("Log Data").
|
||||
This Log Data may include information such as your computer's Internet Protocol ("IP") address, browser type, browser version, the pages of my Site that you visit, the time and date of your visit, the time spent on those pages and other statistics.</p>
|
||||
|
||||
<p>In addition, I may use third party services such as Google Analytics that collect, monitor and analyze this.</p>
|
||||
</section>
|
||||
|
||||
<p>In addition, I may use third party services such as Google Analytics that collect, monitor and analyze this.</p>
|
||||
<section class="container">
|
||||
<h2>Cookies Policy</h2>
|
||||
<span>Last updated: 20/12/2019</span>
|
||||
|
||||
<br>
|
||||
|
||||
<h2>Cookies Policy</h2>
|
||||
<h5>Last updated: 20/12/2019</h5>
|
||||
<p>Quartznet ("I", "My") uses cookies on Quartznet (the "Service"). By using the Service, you consent to the use of cookies.</p>
|
||||
|
||||
<p>Quartznet ("I", "My") uses cookies on Quartznet (the "Service"). By using the Service, you consent to the use of cookies.
|
||||
</p>
|
||||
<h2>What are cookies</h2>
|
||||
<p>Cookies are small pieces of text sent by your web browser by a website you visit. A cookie file is stored in your web browser and allows the Service or a third-party to recognize you and make your next visit easier and the Service more useful to you.</p>
|
||||
|
||||
<h2>What are cookies</h2>
|
||||
<p>Cookies are small pieces of text sent by your web browser by a website you visit. A cookie file is stored in your web browser and allows the Service or a third-party to recognize you and make your next visit easier and the Service more useful to you.</p>
|
||||
<h2>How Quartznet uses cookies</h2>
|
||||
<p>When you use and access the Service, I may place a number of cookies files in your web browser.</p>
|
||||
|
||||
<h2>How Quartznet uses cookies</h2>
|
||||
<p>When you use and access the Service, I may place a number of cookies files in your web browser.</p>
|
||||
<p>I use cookies for the following purposes: to enable certain functions of the Service, to provide analytics, and to store your preferences.</p>
|
||||
|
||||
<p>I use cookies for the following purposes: to enable certain functions of the Service, to provide analytics, and to store your preferences.</p>
|
||||
|
||||
<h2>What are your choices regarding cookies</h2>
|
||||
<p>If you'd like to delete cookies or instruct your web browser to delete or refuse cookies, please visit the help pages of your web browser.</p>
|
||||
</section>
|
||||
</main>
|
||||
<h2>What are your choices regarding cookies</h2>
|
||||
<p>If you'd like to delete cookies or instruct your web browser to delete or refuse cookies, please visit the help pages of your web browser.</p>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<?php include "../includes/footer.php" ?>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -1,20 +1,24 @@
|
||||
<!-- Quartznet home page -->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<title>Quartznet</title>
|
||||
|
||||
<?php include "../includes/head.php" ?>
|
||||
<head>
|
||||
<title>Quartznet | Sirius</title>
|
||||
|
||||
<?php include "../includes/head.php" ?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include "../includes/header.php" ?>
|
||||
|
||||
<main class="container">
|
||||
<section class="content">
|
||||
<h1>Sirius game</h1>
|
||||
<p>Sirius game. Work in progress</p>
|
||||
<p><a href="https://quartznet.info/presskit">Presskit</p>
|
||||
</section>
|
||||
</main>
|
||||
<main>
|
||||
<section class="content container">
|
||||
<h1>Sirius game</h1>
|
||||
<p>Sirius game. Work in progress</p>
|
||||
<a href="https://quartznet.info/presskit">Presskit</a>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<?php include "../includes/footer.php" ?>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
Loading…
x
Reference in New Issue
Block a user