Add new theme and update CSS var
This commit is contained in:
parent
a95e3120fa
commit
3a847ca338
6 changed files with 437 additions and 12 deletions
|
@ -67,8 +67,7 @@ class FileAndDir {
|
|||
*/
|
||||
public function makeBreadcrumb(): string {
|
||||
if ($this->requestedDir !== '' && $this->requestedDir !== 'photos') {
|
||||
$breadcrumb_navigation = '<div id="breadcrumb">';
|
||||
$breadcrumb_navigation .= '<a href="?dir=">Home</a> > ';
|
||||
$breadcrumb_navigation = '<a href="?dir=">Home</a> > ';
|
||||
|
||||
$navitems = explode("/", htmlspecialchars($this->requestedDir));
|
||||
$path = '';
|
||||
|
@ -85,8 +84,6 @@ class FileAndDir {
|
|||
$path .= '/';
|
||||
}
|
||||
}
|
||||
|
||||
$breadcrumb_navigation .= '</div>';
|
||||
return $breadcrumb_navigation;
|
||||
} else {
|
||||
return '';
|
||||
|
|
|
@ -17,7 +17,7 @@ Not edit this param directly
|
|||
See README.md
|
||||
*/
|
||||
$config = [
|
||||
'templateFile' => 'board', // Template filename (must be placed in 'public/templates' folder)
|
||||
'templateFile' => 'default', // Template filename (must be placed in 'public/templates' folder)
|
||||
'title' => 'NanoGal', // Text to be displayed in browser titlebar
|
||||
'description' => 'My gallery', // Use in meta tag "description"
|
||||
'author' => 'NanoGal', // Your name
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:root {
|
||||
color-scheme: light dark;
|
||||
color-scheme: dark light;
|
||||
|
||||
--primary: #cc2027;
|
||||
--primary-darken: #8E161B;
|
||||
|
@ -31,25 +31,37 @@
|
|||
--warning-lighten: #D67E4C;
|
||||
--warning-text-contrast: #FFF;
|
||||
|
||||
--divider: light-dark(#B2AFAF, #454343);
|
||||
|
||||
--background-color: light-dark(#fffbfb, #171414);
|
||||
--background-color-darken: light-dark(#B2AFAF, #100E0E);
|
||||
--background-color-lighten: light-dark(#FFFBFB, #454343);
|
||||
|
||||
--light-background-color: #fffbfb;
|
||||
--dark-background-color: #171414;
|
||||
|
||||
--header-background-color: light-dark(#171414, #fffbfb);
|
||||
--header-background-color-darken: light-dark(#100E0E, #B2AFAF);
|
||||
--header-background-color-lighten: light-dark(#454343, #FFFBFB);
|
||||
|
||||
--header-text-color: light-dark(#fffbfb, #171414);
|
||||
--header-text-color-secondary: #ffffffb3;
|
||||
--header-text-color-disable: light-dark(#ffffff80, #454343);
|
||||
--header-text-color-disable: var(--divider);
|
||||
|
||||
--text-color: light-dark(#171414, #fffbfb);
|
||||
--text-color-secondary: #ffffffb3;
|
||||
--text-color-disable: light-dark(#454343, #ffffff80);
|
||||
--text-color-disable: light-dark(#454343, #B2AFAF);
|
||||
|
||||
--light-text-color: #171414;
|
||||
--dark-text-color: #fffbfb;
|
||||
|
||||
--text-color-inverse: light-dark(#fffbfb, #171414);
|
||||
--text-color-secondary-inverse: #ffffffb3;
|
||||
--text-color-disable-inverse: light-dark(#ffffff80, #454343);
|
||||
--text-color-disable-inverse: var(--divider);
|
||||
|
||||
--box-shadow-light: .4rem .4rem 0px .1rem #B2AFAF;
|
||||
--box-shadow-dark: .4rem .4rem 0px .1rem #454343;
|
||||
--box-shadow-auto: .4rem .4rem 0px .1rem var(--divider);
|
||||
|
||||
--h1-color: var(--primary);
|
||||
--h2-color: #c33d35;
|
||||
|
@ -57,6 +69,9 @@
|
|||
--h4-color: #ae5e52;
|
||||
--h5-color: #a16a61;
|
||||
--h6-color: #927671;
|
||||
|
||||
--font-size: 1.1em;
|
||||
--default-space: .2em;
|
||||
}
|
||||
|
||||
[data-theme="dark"] {
|
||||
|
@ -206,6 +221,13 @@ aside * {
|
|||
width: min-content;
|
||||
}
|
||||
|
||||
.card:hover{
|
||||
transform: scale(1.2);
|
||||
z-index: 1;
|
||||
box-shadow: 0em 0em .3em .3em var(--background-color-darken);
|
||||
border-radius: .2em;
|
||||
}
|
||||
|
||||
.card a {
|
||||
display: flex;
|
||||
}
|
||||
|
|
|
@ -13,11 +13,11 @@ use App\FileAndDir;
|
|||
<meta name="generator" content="NanoGal">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="<?= $config['description']; ?>">
|
||||
|
||||
|
||||
<meta name="msapplication-TileImage" content="/assets/favicons/ms-icon-144x144.png">
|
||||
<meta name="msapplication-TileColor" content="#ffffff">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
|
||||
<link href="assets/css/glightbox.min.css" rel="stylesheet">
|
||||
<link href="templates/board/board.css" rel="stylesheet">
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="/assets/favicons/apple-icon-57x57.png">
|
||||
|
@ -33,7 +33,7 @@ use App\FileAndDir;
|
|||
<link rel="icon" type="image/png" sizes="96x96" href="/assets/favicons/favicon-96x96.png">
|
||||
<link rel="manifest" href="/assets/favicons/manifest.json">
|
||||
|
||||
<link rel="alternate" href="feed.php" type="application/atom+xml" title="Atom 0.3">
|
||||
<link rel="alternate" href="feed.php" type="application/atom+xml" title="Atom 0.3">
|
||||
|
||||
<?= $userCss; ?>
|
||||
</head>
|
||||
|
|
283
public/templates/default/default.css
Normal file
283
public/templates/default/default.css
Normal file
|
@ -0,0 +1,283 @@
|
|||
:root {
|
||||
color-scheme: dark light;
|
||||
|
||||
--primary: #cc2027;
|
||||
--primary-darken: #8E161B;
|
||||
--primary-lighten: #D64C52;
|
||||
--primary-text-contrast: #FFF;
|
||||
|
||||
--secondary: #20ccc5;
|
||||
--secondary-darken: #168E89;
|
||||
--secondary-lighten: #4CD6D0;
|
||||
--secondary-text-contrast: #000;
|
||||
|
||||
--error: #c43933;
|
||||
--error-darken: #892723;
|
||||
--error-lighten: #CF605B;
|
||||
--error-text-contrast: #FFF;
|
||||
|
||||
--info: #206ccc;
|
||||
--info-darken: #164B8E;
|
||||
--info-lighten: #4C89D6;
|
||||
--info-text-contrast: #FFF;
|
||||
|
||||
--success: #7dcc20;
|
||||
--success-darken: #578E16;
|
||||
--success-lighten: #97D64C;
|
||||
--success-text-contrast: #000;
|
||||
|
||||
--warning: #cc5e20;
|
||||
--warning-darken: #8E4116;
|
||||
--warning-lighten: #D67E4C;
|
||||
--warning-text-contrast: #FFF;
|
||||
|
||||
--divider: light-dark(#B2AFAF, #454343);
|
||||
|
||||
--background-color: light-dark(#fffbfb, #171414);
|
||||
--background-color-darken: light-dark(#B2AFAF, #100E0E);
|
||||
--background-color-lighten: light-dark(#FFFBFB, #454343);
|
||||
|
||||
--light-background-color: #fffbfb;
|
||||
--dark-background-color: #171414;
|
||||
|
||||
--header-background-color: light-dark(#171414, #fffbfb);
|
||||
--header-background-color-darken: light-dark(#100E0E, #B2AFAF);
|
||||
--header-background-color-lighten: light-dark(#454343, #FFFBFB);
|
||||
|
||||
--header-text-color: light-dark(#fffbfb, #171414);
|
||||
--header-text-color-secondary: #ffffffb3;
|
||||
--header-text-color-disable: var(--divider);
|
||||
|
||||
--text-color: light-dark(#171414, #fffbfb);
|
||||
--text-color-secondary: #ffffffb3;
|
||||
--text-color-disable: light-dark(#454343, #B2AFAF);
|
||||
|
||||
--light-text-color: #171414;
|
||||
--dark-text-color: #fffbfb;
|
||||
|
||||
--text-color-inverse: light-dark(#fffbfb, #171414);
|
||||
--text-color-secondary-inverse: #ffffffb3;
|
||||
--text-color-disable-inverse: var(--divider);
|
||||
|
||||
--box-shadow-light: .4rem .4rem 0px .1rem #B2AFAF;
|
||||
--box-shadow-dark: .4rem .4rem 0px .1rem #454343;
|
||||
--box-shadow-auto: .4rem .4rem 0px .1rem var(--divider);
|
||||
|
||||
--h1-color: var(--primary);
|
||||
--h2-color: #c33d35;
|
||||
--h3-color: #b94f44;
|
||||
--h4-color: #ae5e52;
|
||||
--h5-color: #a16a61;
|
||||
--h6-color: #927671;
|
||||
|
||||
--font-size: 1.1em;
|
||||
--default-space: .2em;
|
||||
}
|
||||
|
||||
[data-theme="dark"] {
|
||||
--background-color: #171414;
|
||||
--text-color: #fffbfb;
|
||||
}
|
||||
|
||||
[data-theme="light"] {
|
||||
--background-color: #fffbfb;
|
||||
--text-color: #171414;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 62.5%;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
background: var(--background-color);
|
||||
color: var(--text-color);
|
||||
font-size: 1.5rem;
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--primary);
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:not(.card-content):hover {
|
||||
color: var(--primary-lighten);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-style: italic;
|
||||
font-family: Georgia, Lucida, serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
h1 a {
|
||||
color: var(--h1-color);
|
||||
}
|
||||
|
||||
#logo-border-color {
|
||||
fill: var(--primary) !important;
|
||||
stroke: none !important;
|
||||
}
|
||||
|
||||
.logo {
|
||||
height: 3em;
|
||||
vertical-align: middle;
|
||||
stroke: var(--header-text-color) !important;
|
||||
}
|
||||
|
||||
#dark-mode {
|
||||
position: absolute;
|
||||
right: 1em;
|
||||
top: 1em;
|
||||
}
|
||||
|
||||
body>header {
|
||||
background-color: var(--header-background-color);
|
||||
color: var(--header-text-color);
|
||||
padding: 0 .5em;
|
||||
margin: 0 0 .5em 0;
|
||||
}
|
||||
|
||||
main,
|
||||
.message {
|
||||
max-width: 100%;
|
||||
margin: 0px auto;
|
||||
}
|
||||
|
||||
.message {
|
||||
background-color: var(--success);
|
||||
color: var(--success-text-contrast);
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.message>div {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
img {
|
||||
transition: all .2s ease-in;
|
||||
border: none;
|
||||
}
|
||||
|
||||
nav {
|
||||
font-size: 2.2rem;
|
||||
}
|
||||
|
||||
body>nav {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
aside {
|
||||
padding-bottom: 0.3em;
|
||||
}
|
||||
|
||||
aside a {
|
||||
color: var(--primary);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
aside * {
|
||||
margin: .2em 0;
|
||||
}
|
||||
|
||||
main {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: .5em;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
article {
|
||||
background-color: var(--header-background-color);
|
||||
display: grid;
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
transition: all .2s ease-in;
|
||||
position: relative;
|
||||
width: min-content;
|
||||
}
|
||||
|
||||
article a {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.card-footer {
|
||||
color: var(--header-text-color);
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
padding: .3em .6em;
|
||||
text-align: center;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
footer {
|
||||
padding-top: 1em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: var(--primary);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.buildTime {
|
||||
font-size: 1.1rem;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#backtop {
|
||||
bottom: 0;
|
||||
border-radius: 4px;
|
||||
background-color: var(--primary);
|
||||
color: var(--text-color-secondary);
|
||||
display: block;
|
||||
margin: .5%;
|
||||
padding: 1rem 4rem;
|
||||
position: fixed;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
#legend {
|
||||
background-color: var(--header-background-color);
|
||||
flex: none;
|
||||
max-width: 90%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.lightbox-container__media {
|
||||
flex-wrap: wrap;
|
||||
flex-direction: row;
|
||||
|
||||
p {
|
||||
background-color: var(--header-background-color);
|
||||
width: 100%;
|
||||
max-width: 90%;
|
||||
}
|
||||
}
|
||||
|
||||
.gdesc-inner {
|
||||
color: var(--text-color-inverse);
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.gdesc-inner ul {
|
||||
padding: 0 0 0 1.8em;
|
||||
}
|
||||
|
||||
.glightbox-container .gslide,
|
||||
.gslide-image img {
|
||||
user-select: auto;
|
||||
}
|
123
public/templates/default/default.php
Normal file
123
public/templates/default/default.php
Normal file
|
@ -0,0 +1,123 @@
|
|||
<?php
|
||||
|
||||
use App\FileAndDir;
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html data-theme="auto" lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title><?= $config['title']; ?></title>
|
||||
|
||||
<meta name="author" content="<?= $config['author']; ?>">
|
||||
<meta name="generator" content="NanoGal">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="<?= $config['description']; ?>">
|
||||
|
||||
<meta name="msapplication-TileImage" content="/assets/favicons/ms-icon-144x144.png">
|
||||
<meta name="msapplication-TileColor" content="#ffffff">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<link href="assets/css/glightbox.min.css" rel="stylesheet">
|
||||
<link href="templates/default/default.css" rel="stylesheet">
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="/assets/favicons/apple-icon-57x57.png">
|
||||
<link rel="apple-touch-icon" sizes="60x60" href="/assets/favicons/apple-icon-60x60.png">
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="/assets/favicons/apple-icon-72x72.png">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="/assets/favicons/apple-icon-76x76.png">
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="/assets/favicons/apple-icon-114x114.png">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="/assets/favicons/apple-icon-120x120.png">
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="/assets/favicons/apple-icon-144x144.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="/assets/favicons/apple-icon-152x152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicons/apple-icon-180x180.png">
|
||||
<link rel="icon" type="image/png" sizes="192x192" href="/assets/favicons/android-icon-192x192.png">
|
||||
<link rel="icon" type="image/png" sizes="96x96" href="/assets/favicons/favicon-96x96.png">
|
||||
<link rel="manifest" href="/assets/favicons/manifest.json">
|
||||
|
||||
<link rel="alternate" href="feed.php" type="application/atom+xml" title="Atom 0.3">
|
||||
|
||||
<?= $userCss; ?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header id="top">
|
||||
<h1>
|
||||
<svg class="logo" viewBox="0 0 135.467 135.467" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(-37.267 -74.664)">
|
||||
<path d="M105 110.248l32.15 32.15L105 174.546l-32.15-32.15z" fill="none" stroke-width="2.377" />
|
||||
<path
|
||||
d="M125.872 142.397A20.872 20.872 0 01105 163.27a20.872 20.872 0 01-20.872-20.873A20.872 20.872 0 01105 121.525a20.872 20.872 0 0120.872 20.872z"
|
||||
fill="none" stroke-width="2.338" />
|
||||
<ellipse cx="105" cy="142.397" rx="9.621" ry="9.704" fill="#030101" />
|
||||
<circle cx="128.534" cy="119.421" r="3.173" />
|
||||
<path id="logo-border-color"
|
||||
d="M77.916 108.243a7.163 7.163 0 00-7.179 7.178v53.908a7.164 7.164 0 007.18 7.179h53.907a7.163 7.163 0 007.179-7.179v-53.908a7.163 7.163 0 00-7.179-7.178zm-.113 2.475h54.134a4.603 4.603 0 014.613 4.612v54.134a4.603 4.603 0 01-4.613 4.613H77.803a4.603 4.603 0 01-4.613-4.613V115.33a4.603 4.603 0 014.613-4.612z"
|
||||
fill="#333" />
|
||||
<circle cx="111.946" cy="135.633" r="4.596" fill="#fff" />
|
||||
<g fill="none" stroke-width="2.361">
|
||||
<path
|
||||
d="M73.37 181.786h-2.615a5.133 5.133 0 01-5.144-5.144v-2.607M144.389 174.023v2.62a5.133 5.133 0 01-5.144 5.143h-2.59M136.658 103.009h2.587a5.133 5.133 0 015.144 5.143v2.553M65.611 110.717v-2.565a5.133 5.133 0 015.144-5.143h2.607" />
|
||||
</g>
|
||||
</g>
|
||||
</svg><a href="/"><?= $config['title']; ?></a>
|
||||
</h1>
|
||||
<a href="#" id="dark-mode" onclick="switchTheme();">
|
||||
<img height="24" src="/assets/images/moon.svg" alt="Dark/Light mode icon">
|
||||
</a>
|
||||
<nav aria-label="breadcrumb" class="breadcrumb">
|
||||
<?= $breadcrumb_navigation; ?>
|
||||
</nav>
|
||||
<aside>
|
||||
<?= $folderNote; ?>
|
||||
</aside>
|
||||
|
||||
<?php if (!empty($messages)) : ?>
|
||||
<div id="message" class="message">
|
||||
<div>
|
||||
<?= $messages; ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<?php foreach ($listDir as $value) : ?>
|
||||
<?php foreach ($value as $entry) : ?>
|
||||
<article>
|
||||
<a href="<?= $entry['link']; ?>" class="<?= FileAndDir::addToLightBox($entry['type']); ?> card-content" data-gallery="gallery" data-glightbox="<?= $entry['dataAttr']; ?>">
|
||||
<img src="<?= $entry['thumb']; ?>" loading="lazy" alt="" width="<?= $config['thumbSize']; ?>" height="<?= $config['thumbSize']; ?>">
|
||||
</a>
|
||||
<p class="card-footer">
|
||||
<?= $entry['name']; ?>
|
||||
</p>
|
||||
<?= $entry['imgCaption']; ?>
|
||||
</article>
|
||||
<?php endforeach; ?>
|
||||
<?php endforeach; ?>
|
||||
</main>
|
||||
|
||||
<a href="#top" id="backtop">Top</a>
|
||||
|
||||
<footer>
|
||||
Gallery by <?= $config['author']; ?> /
|
||||
<a href="https://forge.leslibres.org/Knah-Tsaeb/NanoGal" title="Powered by NanoGal" target=" _blank">
|
||||
Powered by NanoGal
|
||||
</a> Fork of
|
||||
<a href="https://github.com/sebsauvage/MinigalNano" title="Original MiniGal Nano" target="_blank">
|
||||
MiniGal Nano
|
||||
</a>
|
||||
<p class="buildTime">
|
||||
<% buildTime %>
|
||||
</p>
|
||||
</footer>
|
||||
|
||||
<script src="assets/js/glightbox.min.js"></script>
|
||||
<script src="assets/js/app.js"></script>
|
||||
<script>
|
||||
const lightbox = GLightbox({
|
||||
autoplayVideos: false,
|
||||
descPosition: '<?= $config['imageCaptionPosition']; ?>'
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in a new issue