Update public/index.html, public/style.css files

This commit is contained in:
igna 2021-08-22 07:15:50 +00:00
parent ff960430d8
commit 95816cd8a4
2 changed files with 96 additions and 37 deletions

View File

@ -1,23 +1,26 @@
<!DOCTYPE html> <html lang="en">
<html> <head>
<head> <meta charset="utf-8" />
<meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="generator" content="GitLab Pages"> <title>tixte.gifts - Home</title>
<title>Plain HTML site using GitLab Pages</title> <link href="/style.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css"> </head>
</head> <body>
<body> <script type="3e84f4fa6f544420baae31a2-text/javascript">
<div class="navbar"> window.previousError = '';
<a href="https://pages.gitlab.io/plain-html/">Plain HTML Example</a> window.previousSuccess = '';
<a href="https://gitlab.com/pages/plain-html/">Repository</a> </script>
<a href="https://gitlab.com/pages/">Other Examples</a> <div class="content-main">
</div> <h1>tixte.gifts</h1>
<br />
<h1>Hello World!</h1> <p>hi user, my name is igna</p>
<p>social media:</p>
<p> <br />
This is a simple plain-HTML website on GitLab Pages, without any fancy static site generator. <p><a href="/discord">discord</a> | <a href="https://gitlab.com/fraudulent">gitlab</a> | <a href="https://ogusers.com/pgp">ogusers</a> | <a href="https://solo.to/signed">bio</a></p>
</p> </div>
</body> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" type="3e84f4fa6f544420baae31a2-text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js" type="3e84f4fa6f544420baae31a2-text/javascript"></script>
<script src="/main.js" type="3e84f4fa6f544420baae31a2-text/javascript"></script>
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="3e84f4fa6f544420baae31a2-|49" defer=""></script>
</body>
</html> </html>

View File

@ -1,24 +1,80 @@
* {
padding: 0;
margin: 0;
}
body { body {
font-family: sans-serif; background: black;
margin: auto; color: white;
max-width: 1280px; font-family: monospace;
font-size: 13px;
} }
.navbar { form {
background-color: #313236; display: flex;
border-radius: 2px; flex-direction: column;
max-width: 800px; justify-content: center;
align-items: center;
text-align: center;
} }
.navbar a { input {
color: #aaa; display: block;
display: inline-block; background: black;
font-size: 15px; color: white;
padding: 10px; width: 250px;
text-decoration: none; padding: 5px 4px;
margin: 2px 0 6px 0;
border: 1px solid #ff5252;
text-align: center;
font-size: 13px;
font-family: monospace;
} }
.navbar a:hover { input::-ms-reveal,
color: #ffffff; input::-ms-clear {
display: none;
} }
input[type='submit'] {
width: 150px;
}
a {
color: #ff5252;
text-decoration: none;
}
ul {
list-style: none;
}
.content-main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
min-height: 100vh;
}
#toast-container {
position: absolute;
top: 8px;
right: 8px;
}
.toast {
width: 300px;
background-color: #000 !important;
padding: 8px;
font-size: 16px;
}
.toast-error {
border: 1px solid #ff5252;
}
.toast-success {
border: 1px solid #5be941;
}