mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2024-12-29 10:56:12 +00:00
I forgor what I done 💀
This commit is contained in:
parent
6a835866c4
commit
d4aff1d64f
|
@ -42,6 +42,7 @@
|
||||||
|
|
||||||
.flyout-header {
|
.flyout-header {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
font-family: "Lexend Deca", sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.flyout-actionbox {
|
.flyout-actionbox {
|
||||||
|
|
|
@ -87,6 +87,7 @@
|
||||||
|
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
font-weight: 621;
|
font-weight: 621;
|
||||||
|
font-family: "Lexend Deca", sans-serif;
|
||||||
|
|
||||||
color: var(--fg);
|
color: var(--fg);
|
||||||
}
|
}
|
||||||
|
@ -98,7 +99,8 @@
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
font-weight: 300;
|
font-weight: 500;
|
||||||
|
font-family: 'Secular One', sans-serif;
|
||||||
|
|
||||||
color: var(--fg);
|
color: var(--fg);
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,6 +16,6 @@ footer {
|
||||||
box-shadow: var(--shadow);
|
box-shadow: var(--shadow);
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-child {
|
footer a {
|
||||||
min-width: 200px;
|
margin: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,8 +4,10 @@
|
||||||
This ensures that the website looks the same across all devices
|
This ensures that the website looks the same across all devices
|
||||||
and browsers, regardless if I waisted my time making a tag look
|
and browsers, regardless if I waisted my time making a tag look
|
||||||
good or not
|
good or not
|
||||||
*/
|
|
||||||
@import "normalize.css";
|
@import "normalize.css";
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
@import "nav.css";
|
@import "nav.css";
|
||||||
@import "footer.css";
|
@import "footer.css";
|
||||||
|
@ -32,9 +34,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
font-weight: 521;
|
font-weight: 500;
|
||||||
color: var(--fg);
|
color: var(--fg);
|
||||||
font-family: "Fira Code", monospace;
|
font-family: 'Secular One', sans-serif;
|
||||||
}
|
}
|
||||||
html {
|
html {
|
||||||
margin: 0; padding: 0;
|
margin: 0; padding: 0;
|
||||||
|
@ -411,6 +413,7 @@ form * {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
font-weight: 500;
|
||||||
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
|
@ -511,7 +514,7 @@ h4 {
|
||||||
|
|
||||||
p, a {
|
p, a {
|
||||||
margin: 0 0 0.5rem 0;
|
margin: 0 0 0.5rem 0;
|
||||||
font-family: "Fira Code", monospace;
|
font-family: 'Secular One', sans-serif;
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
|
@ -7,8 +7,8 @@
|
||||||
|
|
||||||
<!-- Google Fonts -->
|
<!-- Google Fonts -->
|
||||||
<link rel="stylesheet" href="css/master.css">
|
<link rel="stylesheet" href="css/master.css">
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@600&display=swap">
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@600">
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@500&display=swap">
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Secular+One&display=swap">
|
||||||
|
|
||||||
<!-- JQuery -->
|
<!-- JQuery -->
|
||||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
|
||||||
|
@ -147,7 +147,7 @@
|
||||||
echo "<p>Image resolution: ".$width."x".$height."</p>";
|
echo "<p>Image resolution: ".$width."x".$height."</p>";
|
||||||
|
|
||||||
// Image Upload date
|
// Image Upload date
|
||||||
echo "<p>Last updated: ".$image['upload']." (+0)</p>";
|
echo "<p>Last updated: +0 ".$image['upload']."</p>";
|
||||||
|
|
||||||
// Image download
|
// Image download
|
||||||
echo "<a class='btn alert-high space-top' href='images/".$image['imagename']."' download='".$image['imagename']."'><img class='svg' src='assets/icons/download.svg'>Download image</a>";
|
echo "<a class='btn alert-high space-top' href='images/".$image['imagename']."' download='".$image['imagename']."'><img class='svg' src='assets/icons/download.svg'>Download image</a>";
|
||||||
|
|
13
index.php
13
index.php
|
@ -10,7 +10,7 @@
|
||||||
<!-- Google Fonts -->
|
<!-- Google Fonts -->
|
||||||
<link rel="stylesheet" href="css/master.css">
|
<link rel="stylesheet" href="css/master.css">
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@600">
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@600">
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@500">
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Secular+One&display=swap">
|
||||||
|
|
||||||
<!-- JQuery -->
|
<!-- JQuery -->
|
||||||
<script
|
<script
|
||||||
|
@ -62,7 +62,7 @@
|
||||||
if (isset($_SESSION["username"])) {
|
if (isset($_SESSION["username"])) {
|
||||||
echo "<h1>".$time_welc." ".$_SESSION['username']."!</h1>";
|
echo "<h1>".$time_welc." ".$_SESSION['username']."!</h1>";
|
||||||
} else {
|
} else {
|
||||||
echo "<h1>Welcome!</h1>";
|
echo "<h1>".$time_welc."!</h1>";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Random welcome message
|
// Random welcome message
|
||||||
|
@ -78,7 +78,14 @@
|
||||||
"I'm gay",
|
"I'm gay",
|
||||||
"I wish we were better strangers.",
|
"I wish we were better strangers.",
|
||||||
"<span style='color:#ffff00;'>Just like Minecraft!</span>",
|
"<span style='color:#ffff00;'>Just like Minecraft!</span>",
|
||||||
"If I were you, I'd run now");
|
"If I were you, I'd run now",
|
||||||
|
"This is the part where I kill you",
|
||||||
|
"SILICA GEL \"DO NOT EAT\".",
|
||||||
|
"This was supposed to be a simple project",
|
||||||
|
"AAAAAAAAAAAAAAAAAAAA",
|
||||||
|
"Let me out",
|
||||||
|
"nice",
|
||||||
|
"Thank you that you're here");
|
||||||
echo "<p>".$welcome_message[array_rand($welcome_message, 1)]."</p>";
|
echo "<p>".$welcome_message[array_rand($welcome_message, 1)]."</p>";
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
<footer class="flex-left around">
|
<footer class="flex-left around">
|
||||||
<div class="footer-child center flex-down">
|
|
||||||
<h3>Contact me</h3>
|
|
||||||
<a class='link' href="https://t.me/Fluffy_Bean">
|
<a class='link' href="https://t.me/Fluffy_Bean">
|
||||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/telegram-logo.svg'>
|
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/telegram-logo.svg'>
|
||||||
Telegram
|
Telegram
|
||||||
|
@ -11,33 +9,14 @@
|
||||||
</a>
|
</a>
|
||||||
<a class='link' href="https://github.com/Fluffy-Bean">
|
<a class='link' href="https://github.com/Fluffy-Bean">
|
||||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/github-logo.svg'>
|
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/github-logo.svg'>
|
||||||
GitHub
|
Github
|
||||||
</a>
|
</a>
|
||||||
</div>
|
|
||||||
<div class="footer-child center flex-down">
|
|
||||||
<h3>Information</h3>
|
|
||||||
<a class='link' href="about.php">
|
<a class='link' href="about.php">
|
||||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/scroll.svg'>
|
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/scroll.svg'>
|
||||||
About
|
About
|
||||||
</a>
|
</a>
|
||||||
<a href="https://github.com/Fluffy-Bean/image-gallery">
|
|
||||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/github-logo.svg'>
|
|
||||||
Project Code
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/Fluffy-Bean/image-gallery/blob/main/LICENSE.md">
|
|
||||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/link.svg'>
|
|
||||||
Legal
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<div class="footer-child center flex-down">
|
|
||||||
<h3>Other Work</h3>
|
|
||||||
<a class='link' href="https://testing.fluffybean.gay">
|
|
||||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/link.svg'>
|
|
||||||
Testing Page
|
|
||||||
</a>
|
|
||||||
<a class='link' href="https://gay.fluffybean.gay">
|
<a class='link' href="https://gay.fluffybean.gay">
|
||||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/link.svg'>
|
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/link.svg'>
|
||||||
My website!
|
My website!
|
||||||
</a>
|
</a>
|
||||||
</div>
|
|
||||||
</footer>
|
</footer>
|
||||||
|
|
Loading…
Reference in a new issue