mirror of
https://github.com/greflm13/StaticGalleryBuilder.git
synced 2026-02-05 02:59:27 +00:00
168 lines
2.7 KiB
CSS
168 lines
2.7 KiB
CSS
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");
|
|
|
|
* {
|
|
--color1: #FF7F50;
|
|
/* Coral */
|
|
--color2: #D2691E;
|
|
/* Chocolate */
|
|
--color3: #8B4513;
|
|
/* SaddleBrown */
|
|
--color4: #FFA07A;
|
|
/* LightSalmon */
|
|
--bcolor1: #FFF8DC;
|
|
/* Cornsilk */
|
|
--bcolor2: #2F4F4F;
|
|
/* DarkSlateGray */
|
|
--bcolor3: #3E2723;
|
|
/* Darker brown */
|
|
--bcolor4: #4E342E;
|
|
/* Slightly lighter brown */
|
|
}
|
|
|
|
.navbar {
|
|
font-weight: 600;
|
|
color: var(--bcolor1);
|
|
background-color: var(--color1);
|
|
font-family: "Playfair Display", serif;
|
|
}
|
|
|
|
.navbar li a {
|
|
font-weight: 500;
|
|
color: var(--bcolor1);
|
|
font-family: "Playfair Display", serif;
|
|
}
|
|
|
|
/* Change the link color on hover */
|
|
.navbar li a:hover {
|
|
text-decoration: none;
|
|
background-color: var(--color2);
|
|
}
|
|
|
|
.footer {
|
|
color: var(--bcolor1);
|
|
background-color: var(--color3);
|
|
font-weight: 500;
|
|
font-family: "Playfair Display", serif;
|
|
}
|
|
|
|
.footer a {
|
|
color: var(--color4);
|
|
text-decoration: none;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.footer a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.foldericon {
|
|
content: "themes/icons/folder-3.svg.j2";
|
|
}
|
|
|
|
.folders a {
|
|
font-weight: 600;
|
|
color: var(--bcolor1);
|
|
text-decoration: none;
|
|
font-family: "Playfair Display", serif;
|
|
}
|
|
|
|
.folders a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.row a {
|
|
font-weight: 500;
|
|
color: var(--color2);
|
|
text-decoration: none;
|
|
font-family: "Playfair Display", serif;
|
|
}
|
|
|
|
.row a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.tooltiptext {
|
|
font-weight: 400;
|
|
background-color: var(--bcolor2);
|
|
font-family: "Playfair Display", serif;
|
|
}
|
|
|
|
.tagentry label:hover {
|
|
background-color: var(--color3);
|
|
}
|
|
|
|
.tagentry .tagtoggle:hover {
|
|
background-color: var(--color3);
|
|
}
|
|
|
|
.column img {
|
|
background-color: var(--bcolor4);
|
|
}
|
|
|
|
#totop:hover {
|
|
background-color: var(--color2);
|
|
}
|
|
|
|
#totop {
|
|
background-color: var(--color1);
|
|
color: var(--bcolor1);
|
|
font-weight: 600;
|
|
font-family: "Playfair Display", serif;
|
|
}
|
|
|
|
.loader,
|
|
.loader:before,
|
|
.loader:after {
|
|
border-radius: 50%;
|
|
width: 2.5em;
|
|
height: 2.5em;
|
|
animation-fill-mode: both;
|
|
animation: bblFadInOut 1.8s infinite ease-in-out;
|
|
}
|
|
|
|
.loader {
|
|
color: var(--bcolor2);
|
|
font-size: 7px;
|
|
position: relative;
|
|
text-indent: -9999em;
|
|
transform: translateZ(0);
|
|
animation-delay: -0.16s;
|
|
}
|
|
|
|
.loader:before,
|
|
.loader:after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
}
|
|
|
|
.loader:before {
|
|
left: -3.5em;
|
|
animation-delay: -0.32s;
|
|
}
|
|
|
|
.loader:after {
|
|
left: 3.5em;
|
|
}
|
|
|
|
@keyframes bblFadInOut {
|
|
|
|
0%,
|
|
80%,
|
|
100% {
|
|
box-shadow: 0 2.5em 0 -1.3em
|
|
}
|
|
|
|
40% {
|
|
box-shadow: 0 2.5em 0 0
|
|
}
|
|
}
|
|
|
|
body {
|
|
color: var(--bcolor1);
|
|
background-color: var(--bcolor3);
|
|
font-family: "Playfair Display", serif;
|
|
font-optical-sizing: auto;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
} |