diff --git a/assets/css/darktheme.css b/assets/css/darktheme.css
index 1b70956b..761cd0b9 100644
--- a/assets/css/darktheme.css
+++ b/assets/css/darktheme.css
@@ -36,3 +36,46 @@ body {
background-color: inherit;
color: inherit;
}
+/***** Side menu *****/
+.header h2 {
+ color: #666;
+}
+
+.content-subhead {
+ color: #888;
+}
+
+#menu {
+ background: #191818;
+}
+
+#menu a {
+ color: #999;
+}
+
+#menu .pure-menu li a:hover,
+#menu .pure-menu li a:focus {
+ background: #333;
+}
+
+#menu .pure-menu ul,
+#menu .pure-menu .menu-item-divided {
+ border-top: 1px solid #333;
+}
+
+.menu-link {
+ background: #000;
+ background: rgba(0,0,0,0.7);
+}
+
+.menu-link:hover,
+.menu-link:focus {
+ background: #000;
+}
+
+.menu-link span,
+.menu-link span:before,
+.menu-link span:after {
+ background-color: #fff;
+}
+/***** Side menu end *****/
diff --git a/assets/css/side-menu.css b/assets/css/side-menu.css
index e2d6351a..dac76c0a 100644
--- a/assets/css/side-menu.css
+++ b/assets/css/side-menu.css
@@ -41,19 +41,19 @@ The content `
` is where all your content goes.
.content {
margin: 0 auto;
padding: 0 2em;
- max-width: 800px;
+ max-width: 1284px;
margin-bottom: 50px;
line-height: 1.6em;
}
.header {
font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
- max-width: 768px;
+ max-width: 1284px;
margin: 0 auto;
padding: 1em;
text-align: center;
- border-bottom: 1px solid #eee;
- background: #fff;
+/* border-bottom: 1px solid #eee;
+ background: #fff;*/
letter-spacing: 0.05em;
}
.header h1 {
@@ -66,14 +66,14 @@ The content `
` is where all your content goes.
font-weight: 100;
line-height: 1.5;
margin: 0;
- color: #666;
+ /* color: #666; */
letter-spacing: -0.02em;
}
.content-subhead {
margin: 50px 0 20px 0;
font-weight: 300;
- color: #888;
+ /* color: #888; */
}
/*
@@ -89,15 +89,19 @@ appears on the left side of the page.
left: 0;
bottom: 0;
z-index: 1000; /* so the menu or its navicon stays above all content */
- background: #191818;
+ background: #f5f5f5;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
+ -moz-transition:all 200ms ease-in;
+ -webkit-transition:all 200ms ease-in;
+ -o-transition:all 200ms ease-in;
+ transition:all 200ms ease-in;
}
/*
All anchors inside the menu should be styled like this.
*/
#menu a {
- color: #999;
+ color: #999;
border: none;
padding: 0.6em 0 0.6em 0.6em;
}
@@ -120,14 +124,14 @@ appears on the left side of the page.
*/
#menu .pure-menu ul,
#menu .pure-menu .menu-item-divided {
- border-top: 1px solid #333;
+ border-top: 1px solid #ececec;
}
/*
Change color of the anchor links on hover/focus.
*/
#menu .pure-menu li a:hover,
#menu .pure-menu li a:focus {
- background: #333;
+ background: #ececec;
}
/*
@@ -148,9 +152,13 @@ appears on the left side of the page.
This styles the menu heading.
*/
#menu .pure-menu-heading {
- font-size: 100%;
+ font-size: 125%;
+ font-weight: 300;
+ letter-spacing: 0.1em;
color: #fff;
- margin: 0;
+ margin-top: 0;
+ padding: 0.5em 0.8em;
+ text-transform: uppercase;
}
/* -- Dynamic Button For Responsive Menu -------------------------------------*/
diff --git a/src/invidious/views/template.ecr b/src/invidious/views/template.ecr
index b611a446..9ce0ca52 100644
--- a/src/invidious/views/template.ecr
+++ b/src/invidious/views/template.ecr
@@ -112,6 +112,7 @@