2019-12-08 00:32:00 +05:30
|
|
|
@import '~app/components/ui/colors.scss';
|
2016-01-04 18:28:23 +05:30
|
|
|
|
2016-01-09 15:21:29 +05:30
|
|
|
$sidebar-width: 320px;
|
|
|
|
|
2016-01-04 02:48:42 +05:30
|
|
|
.sidebar {
|
2019-11-27 14:33:32 +05:30
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
top: 50px;
|
|
|
|
z-index: 10;
|
|
|
|
|
|
|
|
background: $black;
|
2016-01-04 02:48:42 +05:30
|
|
|
}
|
|
|
|
|
2016-02-06 16:17:51 +05:30
|
|
|
.hiddenSidebar {
|
2019-11-27 14:33:32 +05:30
|
|
|
composes: sidebar;
|
2016-02-06 16:17:51 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
display: none;
|
2016-02-06 16:17:51 +05:30
|
|
|
}
|
|
|
|
|
2016-01-04 02:48:42 +05:30
|
|
|
.content {
|
2019-11-27 14:33:32 +05:30
|
|
|
text-align: center;
|
|
|
|
max-width: 340px;
|
|
|
|
margin: 0 auto;
|
2016-02-06 16:17:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 350px) {
|
2019-11-27 14:33:32 +05:30
|
|
|
.content {
|
|
|
|
padding: 55px 0;
|
|
|
|
}
|
2016-02-06 16:17:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 720px) {
|
2019-11-27 14:33:32 +05:30
|
|
|
.content {
|
|
|
|
padding: 55px 50px;
|
|
|
|
margin-left: $sidebar-width;
|
|
|
|
}
|
2016-02-06 16:17:51 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
.sidebar {
|
|
|
|
right: auto;
|
2016-02-06 16:17:51 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
width: $sidebar-width;
|
|
|
|
}
|
2016-02-06 16:17:51 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
.hiddenSidebar {
|
|
|
|
display: block;
|
|
|
|
}
|
2016-01-04 02:48:42 +05:30
|
|
|
}
|