2018-09-28 19:20:15 +00:00
|
|
|
@import 'variables';
|
|
|
|
|
|
|
|
[hidden] {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-family: Open Sans, sans-serif;
|
|
|
|
font-size: 13px;
|
|
|
|
background-color: $color-grey-light;
|
2018-09-29 00:22:00 +00:00
|
|
|
color: $color-grey;
|
2018-09-28 19:20:15 +00:00
|
|
|
}
|
|
|
|
|
2018-10-05 09:37:48 +00:00
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
color: $color-black;
|
|
|
|
font-weight: 600;
|
|
|
|
margin: 0.67em 0;
|
|
|
|
span {
|
|
|
|
font-weight: 400;
|
|
|
|
padding-left: 0.5em;
|
|
|
|
&:before {
|
|
|
|
content: '// ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 1.23em;
|
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
font-size: 1.16em;
|
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
font-size: 1.12em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.debug {
|
|
|
|
outline: 2px dotted red;
|
|
|
|
}
|
|
|
|
|
2018-09-28 19:20:15 +00:00
|
|
|
#header {
|
|
|
|
background-color: $color-white;
|
2018-10-05 09:37:48 +00:00
|
|
|
color: $color-black;
|
2018-09-28 19:20:15 +00:00
|
|
|
position: relative;
|
|
|
|
@include border-shadow(bottom);
|
|
|
|
border: solid $color-white;
|
|
|
|
border-width: 1px 0;
|
2018-10-05 09:37:48 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 1em 0;
|
|
|
|
> * {
|
|
|
|
padding: 0 1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#button-toggle {
|
|
|
|
@include icon('menu');
|
|
|
|
display: none;
|
|
|
|
color: $color-black;
|
|
|
|
font-size: 2em;
|
|
|
|
padding: 0.72em;
|
|
|
|
cursor: pointer;
|
2018-09-28 19:20:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#logo {
|
2018-10-05 09:37:48 +00:00
|
|
|
flex: 1 1 0px;
|
2018-09-28 19:20:15 +00:00
|
|
|
}
|
|
|
|
|
2018-10-05 09:37:48 +00:00
|
|
|
#notification {
|
|
|
|
@include icon(bell);
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#profile {
|
|
|
|
> * {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
2018-09-28 19:20:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#subContainer {
|
|
|
|
display: flex;
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mainContainer {
|
|
|
|
flex: 1 1 0px;
|
|
|
|
}
|
|
|
|
|
2018-10-05 09:37:48 +00:00
|
|
|
.limiter{
|
|
|
|
display: block;
|
|
|
|
max-width: 650px;
|
2018-09-29 00:22:00 +00:00
|
|
|
}
|
2018-10-05 09:37:48 +00:00
|
|
|
/* sub menu (right menu) */
|
2018-09-29 00:22:00 +00:00
|
|
|
|
2018-10-05 09:37:48 +00:00
|
|
|
#mainContainer > div {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
align-items: flex-start;
|
|
|
|
> sib-router {
|
|
|
|
display: block;
|
|
|
|
background-color: #ccc;
|
|
|
|
sib-route {
|
|
|
|
display: block;
|
|
|
|
> div {
|
|
|
|
position: relative;
|
|
|
|
padding: 1em 2em;
|
|
|
|
border-bottom: 1px solid #888;
|
|
|
|
}
|
|
|
|
&[active] {
|
|
|
|
font-weight: bold;
|
|
|
|
> div:before {
|
|
|
|
content: '<';
|
|
|
|
position: absolute;
|
|
|
|
transform: translateX(-150%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
> div {
|
|
|
|
margin: 2.6em;
|
|
|
|
flex: 1 1 0px;
|
2018-09-29 00:22:00 +00:00
|
|
|
}
|
|
|
|
}
|
2018-10-05 09:37:48 +00:00
|
|
|
|
|
|
|
#search-bar > div {
|
|
|
|
position: relative;
|
2018-09-29 00:22:00 +00:00
|
|
|
}
|
2018-10-05 09:37:48 +00:00
|
|
|
|
|
|
|
#search-icon {
|
|
|
|
pointer-events: none;
|
2018-09-29 00:22:00 +00:00
|
|
|
}
|
|
|
|
|
2018-10-05 09:37:48 +00:00
|
|
|
#search-icon,
|
|
|
|
#close-search-icon {
|
|
|
|
position: absolute;
|
|
|
|
right: 0.4em;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
margin: auto;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
#search-input {
|
|
|
|
-webkit-appearance: textfield;
|
|
|
|
border-radius: 10em;
|
|
|
|
padding: 0.4em 0.8em;
|
|
|
|
border: 1px solid $color-grey;
|
|
|
|
& ~ #close-search-icon {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
&:focus {
|
|
|
|
& ~ #close-search-icon {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
& ~ #search-icon {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sib-trigger.back {
|
|
|
|
display: block;
|
|
|
|
@include icon('arrow-left');
|
|
|
|
@extend h1;
|
|
|
|
}
|