mirror of
https://github.com/greflm13/StaticGalleryBuilder.git
synced 2026-02-05 02:59:27 +00:00
added themes
This commit is contained in:
23
files/default-dark.css
Normal file
23
files/default-dark.css
Normal file
@@ -0,0 +1,23 @@
|
||||
.navbar {
|
||||
color: #e8e6e3;
|
||||
background-color: #262a2b;
|
||||
}
|
||||
|
||||
.navbar li a {
|
||||
color: #e8e6e3;
|
||||
}
|
||||
|
||||
/* Change the link color on hover */
|
||||
.navbar li a:hover {
|
||||
background-color: #0d0e0e;
|
||||
}
|
||||
|
||||
.license {
|
||||
color: #e8e6e3;
|
||||
background-color: #313537;
|
||||
}
|
||||
|
||||
body {
|
||||
color: #e8e6e3;
|
||||
background-color: #181a1b;
|
||||
}
|
||||
22
files/default.css
Normal file
22
files/default.css
Normal file
@@ -0,0 +1,22 @@
|
||||
.navbar {
|
||||
color: #fff;
|
||||
background-color: #333;
|
||||
}
|
||||
|
||||
.navbar li a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Change the link color on hover */
|
||||
.navbar li a:hover {
|
||||
background-color: #111;
|
||||
}
|
||||
|
||||
.license {
|
||||
color: #000;
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #fff;
|
||||
}
|
||||
@@ -7,6 +7,7 @@ body {
|
||||
margin-top: 32px;
|
||||
margin-bottom: 56px;
|
||||
font-family: Arial;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.folders {
|
||||
@@ -129,7 +130,6 @@ figure {
|
||||
.caption {
|
||||
padding-top: 4px;
|
||||
text-align: center;
|
||||
font-style: italic;
|
||||
font-size: 12px;
|
||||
width: 100%;
|
||||
display: block;
|
||||
@@ -139,7 +139,6 @@ figure {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
background-color: lightgrey;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
@@ -151,7 +150,6 @@ figure {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
background-color: #333;
|
||||
}
|
||||
|
||||
.navbar li {
|
||||
@@ -160,7 +158,6 @@ figure {
|
||||
|
||||
.navbar li a {
|
||||
display: block;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 14px 16px;
|
||||
text-decoration: none;
|
||||
@@ -168,13 +165,7 @@ figure {
|
||||
|
||||
.navbar li span {
|
||||
display: block;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 14px 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Change the link color to #111 (black) on hover */
|
||||
.navbar li a:hover {
|
||||
background-color: #111;
|
||||
}
|
||||
30
files/monokai-vibrant.css
Normal file
30
files/monokai-vibrant.css
Normal file
@@ -0,0 +1,30 @@
|
||||
.navbar {
|
||||
font-weight: bold;
|
||||
color: #f6f6f6;
|
||||
background-color: #191b20;
|
||||
}
|
||||
|
||||
.navbar li a {
|
||||
font-weight: bold;
|
||||
color: #f6f6f6;
|
||||
}
|
||||
|
||||
/* Change the link color on hover */
|
||||
.navbar li a:hover {
|
||||
background-color: #2c313a;
|
||||
}
|
||||
|
||||
.license {
|
||||
color: #f6f6f6;
|
||||
background-color: #2c313a;
|
||||
}
|
||||
|
||||
body {
|
||||
color: #f6f6f6;
|
||||
background-color: #16171d
|
||||
}
|
||||
|
||||
a {
|
||||
font-weight: bold;
|
||||
color: #ffd945;
|
||||
}
|
||||
Reference in New Issue
Block a user