Files
StaticGalleryBuilder/themes/alpenglow.css

97 lines
1.6 KiB
CSS

@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@200;400;600;800&display=swap");
* {
--color1: #FFADAD; /* Soft Pink */
--color2: #FF6363; /* Vivid Pink */
--color3: #FF9F1C; /* Orange */
--color4: #FF6F91; /* Coral Pink */
--bcolor1: #FFFFFF; /* White */
--bcolor2: #1E1E1E; /* Almost Black */
--bcolor3: #2E2E2E; /* Dark Gray */
--bcolor4: #4B4B4B; /* Medium Gray */
}
body {
color: var(--bcolor1);
background-color: var(--bcolor3);
font-family: "Roboto Slab", serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}
.navbar {
font-weight: 600;
color: var(--bcolor2);
background-color: var(--color1);
}
.navbar li a {
font-weight: 400;
color: var(--bcolor2);
}
/* Change the link color on hover */
.navbar li a:hover {
text-decoration: none;
background-color: var(--color2);
}
.footer {
color: var(--bcolor2);
background-color: var(--color3);
font-weight: 600;
}
.footer a {
color: var(--color4);
text-decoration: none;
}
.footer a:hover {
text-decoration: none;
}
.foldericon {
content: "themes/icons/subfolder.svg.j2";
}
.folders a {
font-weight: 400;
color: var(--bcolor1);
text-decoration: none;
}
.folders a:hover {
text-decoration: none;
}
.row a {
font-weight: 400;
color: var(--color2);
text-decoration: none;
}
.row a:hover {
text-decoration: underline;
}
.tooltiptext {
font-weight: 200;
background-color: var(--bcolor2);
}
.column img {
background-color: var(--bcolor4);
}
#totop:hover {
background-color: var(--color2);
}
#totop {
background-color: var(--color1);
color: var(--bcolor1);
font-weight: 400;
}