Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/hossainemruz/toha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorhossainemruz <emruz@appscode.com>2020-04-18 16:20:27 +0300
committerhossainemruz <emruz@appscode.com>2020-04-18 16:20:27 +0300
commit86b1a9ca7a579340c564c96b9109387d583ed153 (patch)
treeb37ddca13476969ca5a3439617e47511aadcb786 /static
parentf935b3c6df2163fe8dc48644902b0c3566f34b40 (diff)
Fix sidebar css
Diffstat (limited to 'static')
-rw-r--r--static/assets/css/list.css34
-rw-r--r--static/assets/css/navbar.css9
2 files changed, 28 insertions, 15 deletions
diff --git a/static/assets/css/list.css b/static/assets/css/list.css
index ddbeaec..56a0a4d 100644
--- a/static/assets/css/list.css
+++ b/static/assets/css/list.css
@@ -11,13 +11,13 @@
background: #f9fafc;
min-height: 100vh;
overflow: auto;
- transition: all ease-in-out 0.3s;
+ transition: all ease-out 0.3s;
}
.sidebar.hide {
position: relative;
width: 0;
- transition: all ease-in-out 0.3s;
+ transition: all ease-out 0.3s;
z-index: -1001;
}
@@ -241,7 +241,7 @@ a.focused {
}
.sidebar nav {
display: none;
- transition: all ease-in-out 0.3s;
+ transition: all ease-out 0.3s;
}
.sidebar.hide {
position: relative;
@@ -250,7 +250,13 @@ a.focused {
}
.sidebar-tree {
+ margin-left: -20rem;
+ transition: all 0.3s ease-out;
+ }
+
+ .sidebar.hide .sidebar-tree{
margin-left: 1.5rem;
+ transition: all 0.3s ease-out;
}
.content-cards {
@@ -312,7 +318,7 @@ a.focused {
width: 100vw;
min-height: 0;
overflow: hidden;
- transition: all ease-in-out 0.5s;
+ transition: all ease-out 0.5s;
}
.sidebar-tree {
@@ -325,35 +331,35 @@ a.focused {
width: 100vw;
max-height: 100vh;
overflow: hidden;
- transition: all ease-in-out 0.5s;
+ transition: all ease-out 0.5s;
}
.content-cards {
padding-top: 20px;
padding-left: 0px;
- transition: all ease-in-out 0.5s;
+ transition: all ease-out 0.5s;
}
.content.overley .content-cards {
padding-top: 0px;
padding-left: 0px;
- transition: all ease-in-out 0.5s;
+ transition: all ease-out 0.5s;
}
.post-cards {
margin: 0;
margin-top: 32px;
- transition: all ease-in-out 0.5s;
+ transition: all ease-out 0.5s;
}
.content.overley .post-cards {
margin: 0;
- transition: all ease-in-out 0.5s;
+ transition: all ease-out 0.5s;
}
.post-cards .filtr-item {
- margin: 10px;
- width: 90vw !important;
+ margin: 0px;
+ width: 95vw !important;
}
.post-cards .card {
@@ -361,11 +367,11 @@ a.focused {
}
.content.overley .post-cards .filtr-item {
- margin: 10px;
- width: 90vw !important;
+ margin: 0px;
+ width: 95vw !important;
}
.content.overley .post-cards .card {
- max-width: 90vw !important;
+ max-width: 95vw !important;
}
}
diff --git a/static/assets/css/navbar.css b/static/assets/css/navbar.css
index 9a248b2..f5fcead 100644
--- a/static/assets/css/navbar.css
+++ b/static/assets/css/navbar.css
@@ -160,6 +160,13 @@
/* Medium devices (tablets, 768px and up) */
@media only screen and (max-width: 768px) {
+ .initial-navbar .navbar-nav .active,
+ .initial-navbar li a:hover {
+ color: #2098d1;
+ -webkit-transition: all 0.3s ease-out;
+ transition: all 0.3s ease-out;
+ }
+
.final-navbar .navbar-nav .active,
.final-navbar li a:hover {
color: #2098d1;
@@ -173,7 +180,7 @@
border-bottom: none;
}
- .navbar-collapse.show {
+ .final-navbar .navbar-collapse.show {
box-shadow: 5px 10px 10px rgba(192, 204, 218, 0.3);
transition: all 0.3s ease-out;
}