diff options
author | Roman Gräf <roman.graef@gmail.com> | 2017-11-05 20:46:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-05 20:46:38 +0100 |
commit | 47a0491a75b38c5b092b0004f49eb913695ee115 (patch) | |
tree | 82ae95213c6cad3e189e6d9567ef5050f019918a | |
parent | a88976df863fb0b950128ef60cfa84f18c0b173b (diff) | |
download | ichtml-47a0491a75b38c5b092b0004f49eb913695ee115.tar.gz ichtml-47a0491a75b38c5b092b0004f49eb913695ee115.tar.bz2 ichtml-47a0491a75b38c5b092b0004f49eb913695ee115.zip |
Update sidebar.css
-rw-r--r-- | res/sidebar.css | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/res/sidebar.css b/res/sidebar.css index 577cf08..88f5ace 100644 --- a/res/sidebar.css +++ b/res/sidebar.css @@ -7,6 +7,14 @@ left: -25%;
transition: all 500ms;
}
+.sidebar-button {
+ text-align: right;
+ color: black;
+ border-right: 1px solid #000;
+ z-index:9;
+}
+
+
@media (max-device-width: 580px) {
.sidebar {
@@ -15,6 +23,9 @@ top: -100%;
height: 100%;
}
+ .sidebar-button{
+ text-align: left;
+ }
}
.sidebar-active{
@@ -32,11 +43,6 @@ width: 100%;
}
-.sidebar-button {
- text-align: right;
- color: black;
- border-right: 1px solid #000;
-}
.sidebar-button:hover {
}
|