Files
StaticGalleryBuilder/themes/summer.css
2024-07-12 21:17:09 +02:00

105 lines
1.9 KiB
CSS

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
* {
--color1: #FFD700; /* Gold */
--color2: #00BFFF; /* DeepSkyBlue */
--color3: #32CD32; /* LimeGreen */
--color4: #FFA500; /* Orange */
--bcolor1: #FFFFFF; /* White */
--bcolor2: #1E1E1E; /* DarkGrey */
--bcolor3: #F0F8FF; /* AliceBlue */
--bcolor4: #E0FFFF; /* LightCyan */
}
.navbar {
font-weight: 700;
color: var(--bcolor2);
background-color: var(--color1);
font-family: "Roboto", sans-serif;
}
.navbar li a {
font-weight: 500;
color: var(--bcolor2);
font-family: "Roboto", sans-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: "Roboto", sans-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(--bcolor2);
text-decoration: none;
font-family: "Roboto", sans-serif;
}
.folders a:hover {
text-decoration: none;
}
.row a {
font-weight: 500;
color: var(--color2);
text-decoration: none;
font-family: "Roboto", sans-serif;
}
.row a:hover {
text-decoration: underline;
}
.tooltiptext {
font-weight: 400;
background-color: var(--bcolor2);
font-family: "Roboto", sans-serif;
}
.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: "Roboto", sans-serif;
}
body {
color: var(--bcolor2);
background-color: var(--bcolor3);
font-family: "Roboto", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}