mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2024-12-28 02:16:17 +00:00
I forgor what I done 💀
This commit is contained in:
parent
6a835866c4
commit
d4aff1d64f
|
@ -42,6 +42,7 @@
|
|||
|
||||
.flyout-header {
|
||||
font-size: 20px;
|
||||
font-family: "Lexend Deca", sans-serif;
|
||||
}
|
||||
|
||||
.flyout-actionbox {
|
||||
|
|
|
@ -87,6 +87,7 @@
|
|||
|
||||
font-size: 15px;
|
||||
font-weight: 621;
|
||||
font-family: "Lexend Deca", sans-serif;
|
||||
|
||||
color: var(--fg);
|
||||
}
|
||||
|
@ -98,7 +99,8 @@
|
|||
font-size: 14px;
|
||||
|
||||
word-wrap: break-word;
|
||||
font-weight: 300;
|
||||
font-weight: 500;
|
||||
font-family: 'Secular One', sans-serif;
|
||||
|
||||
color: var(--fg);
|
||||
}
|
||||
|
|
|
@ -16,6 +16,6 @@ footer {
|
|||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
.footer-child {
|
||||
min-width: 200px;
|
||||
footer a {
|
||||
margin: 0.5rem;
|
||||
}
|
||||
|
|
|
@ -4,8 +4,10 @@
|
|||
This ensures that the website looks the same across all devices
|
||||
and browsers, regardless if I waisted my time making a tag look
|
||||
good or not
|
||||
*/
|
||||
|
||||
@import "normalize.css";
|
||||
*/
|
||||
|
||||
|
||||
@import "nav.css";
|
||||
@import "footer.css";
|
||||
|
@ -32,9 +34,9 @@
|
|||
}
|
||||
|
||||
* {
|
||||
font-weight: 521;
|
||||
font-weight: 500;
|
||||
color: var(--fg);
|
||||
font-family: "Fira Code", monospace;
|
||||
font-family: 'Secular One', sans-serif;
|
||||
}
|
||||
html {
|
||||
margin: 0; padding: 0;
|
||||
|
@ -411,6 +413,7 @@ form * {
|
|||
display: block;
|
||||
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
|
||||
text-decoration: none;
|
||||
|
||||
|
@ -511,7 +514,7 @@ h4 {
|
|||
|
||||
p, a {
|
||||
margin: 0 0 0.5rem 0;
|
||||
font-family: "Fira Code", monospace;
|
||||
font-family: 'Secular One', sans-serif;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
|
||||
<!-- Google Fonts -->
|
||||
<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=Fira+Code:wght@500&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=Secular+One&display=swap">
|
||||
|
||||
<!-- JQuery -->
|
||||
<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>";
|
||||
|
||||
// Image Upload date
|
||||
echo "<p>Last updated: ".$image['upload']." (+0)</p>";
|
||||
echo "<p>Last updated: +0 ".$image['upload']."</p>";
|
||||
|
||||
// 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>";
|
||||
|
|
13
index.php
13
index.php
|
@ -10,7 +10,7 @@
|
|||
<!-- Google Fonts -->
|
||||
<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=Fira+Code:wght@500">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Secular+One&display=swap">
|
||||
|
||||
<!-- JQuery -->
|
||||
<script
|
||||
|
@ -62,7 +62,7 @@
|
|||
if (isset($_SESSION["username"])) {
|
||||
echo "<h1>".$time_welc." ".$_SESSION['username']."!</h1>";
|
||||
} else {
|
||||
echo "<h1>Welcome!</h1>";
|
||||
echo "<h1>".$time_welc."!</h1>";
|
||||
}
|
||||
|
||||
// Random welcome message
|
||||
|
@ -78,7 +78,14 @@
|
|||
"I'm gay",
|
||||
"I wish we were better strangers.",
|
||||
"<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>";
|
||||
?>
|
||||
</div>
|
||||
|
|
|
@ -1,43 +1,22 @@
|
|||
<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">
|
||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/telegram-logo.svg'>
|
||||
Telegram
|
||||
</a>
|
||||
<a class='link' href="https://twitter.com/fluffybeanUwU">
|
||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/twitter-logo.svg'>
|
||||
Twitter
|
||||
</a>
|
||||
<a class='link' href="https://github.com/Fluffy-Bean">
|
||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/github-logo.svg'>
|
||||
GitHub
|
||||
</a>
|
||||
</div>
|
||||
<div class="footer-child center flex-down">
|
||||
<h3>Information</h3>
|
||||
<a class='link' href="about.php">
|
||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/scroll.svg'>
|
||||
About
|
||||
</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">
|
||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/link.svg'>
|
||||
My website!
|
||||
</a>
|
||||
</div>
|
||||
<a class='link' href="https://t.me/Fluffy_Bean">
|
||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/telegram-logo.svg'>
|
||||
Telegram
|
||||
</a>
|
||||
<a class='link' href="https://twitter.com/fluffybeanUwU">
|
||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/twitter-logo.svg'>
|
||||
Twitter
|
||||
</a>
|
||||
<a class='link' href="https://github.com/Fluffy-Bean">
|
||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/github-logo.svg'>
|
||||
Github
|
||||
</a>
|
||||
<a class='link' href="about.php">
|
||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/scroll.svg'>
|
||||
About
|
||||
</a>
|
||||
<a class='link' href="https://gay.fluffybean.gay">
|
||||
<img class='svg' src='<?php echo $root_dir; ?>assets/icons/link.svg'>
|
||||
My website!
|
||||
</a>
|
||||
</footer>
|
||||
|
|
Loading…
Reference in a new issue