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