2019-12-08 00:32:00 +05:30
|
|
|
|
@import '~app/components/ui/colors.scss';
|
|
|
|
|
@import '~app/components/ui/fonts.scss';
|
2016-01-04 11:32:13 +05:30
|
|
|
|
|
2016-01-15 14:44:15 +05:30
|
|
|
|
$userBarHeight: 50px;
|
|
|
|
|
|
2016-01-04 02:48:42 +05:30
|
|
|
|
.root {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
height: 100%;
|
2016-06-04 13:09:24 +05:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.viewPort {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
height: 100%;
|
2016-01-04 02:48:42 +05:30
|
|
|
|
}
|
|
|
|
|
|
2016-05-01 23:20:55 +05:30
|
|
|
|
.isPopupActive {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
filter: blur(5px);
|
|
|
|
|
transition: filter 0.4s 0.1s ease;
|
2016-05-01 23:20:55 +05:30
|
|
|
|
}
|
|
|
|
|
|
2016-01-04 02:48:42 +05:30
|
|
|
|
.wrapper {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
max-width: 756px;
|
|
|
|
|
margin: 0 auto;
|
2016-01-04 02:48:42 +05:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 100;
|
|
|
|
|
height: $userBarHeight;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: $green;
|
2016-01-04 02:48:42 +05:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.headerContent {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
composes: wrapper;
|
|
|
|
|
position: relative;
|
2016-01-04 02:48:42 +05:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
line-height: 50px;
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
background: darker($green);
|
|
|
|
|
border-bottom: none;
|
2016-01-04 11:32:13 +05:30
|
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
|
font-family: $font-family-title;
|
|
|
|
|
font-size: 33px;
|
|
|
|
|
color: #fff !important;
|
2016-01-04 02:48:42 +05:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.body {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
// TODO: должны ли мы здесь описать базовый шрифт, его размер и базовую линию?
|
|
|
|
|
composes: wrapper;
|
|
|
|
|
position: relative;
|
2016-01-04 02:48:42 +05:30
|
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
|
min-height: 100%;
|
|
|
|
|
box-sizing: border-box;
|
2016-10-09 23:24:35 +05:30
|
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
|
padding-top: $userBarHeight; // place for header
|
2016-01-04 02:48:42 +05:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userbar {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
left: 115px;
|
|
|
|
|
top: 0;
|
2016-01-04 02:48:42 +05:30
|
|
|
|
}
|