hubl/src/styles/main.scss

259 lines
3.8 KiB
SCSS
Raw Normal View History

2018-09-28 19:20:15 +00:00
@import 'variables';
[hidden] {
display: none !important;
}
2018-10-31 09:38:41 +00:00
*,
*::before,
*::after {
2018-11-16 10:33:39 +00:00
// box-sizing: inherit;
2018-10-19 18:36:16 +00:00
}
2018-09-28 19:20:15 +00:00
html {
2018-11-16 10:33:39 +00:00
//box-sizing: border-box;
2018-09-28 19:20:15 +00:00
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-11-16 10:33:39 +00:00
// body {
// height: 100%;
// display:flex;
// flex-direction: column;
// }
2018-10-05 09:37:48 +00:00
h1,
h2,
h3,
h4,
h5,
h6 {
color: $color-black;
font-weight: 600;
2018-10-18 18:06:43 +00:00
padding: 0;
2018-10-05 09:37:48 +00:00
margin: 0.67em 0;
span {
font-weight: 400;
padding-left: 0.5em;
&:before {
content: '// ';
}
}
}
h1 {
2018-10-31 09:38:41 +00:00
font-size: 1.24em;
2018-10-05 09:37:48 +00:00
}
h2 {
2018-10-31 09:38:41 +00:00
font-size: 1.04em;
2018-10-05 09:37:48 +00:00
}
h3 {
2018-10-31 09:38:41 +00:00
font-size: .84em;
}
h4 {
font-size: 0.68em;
2018-10-05 09:37:48 +00:00
}
.debug {
outline: 2px dotted red;
}
2018-10-31 09:38:41 +00:00
.frame {
@extend %frame;
padding: 1em;
}
2018-11-16 10:33:39 +00:00
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-11-16 10:33:39 +00:00
//position: relative;
//@include border-shadow(bottom);
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
2018-09-28 19:20:15 +00:00
border: solid $color-white;
border-width: 1px 0;
2018-10-05 09:37:48 +00:00
display: flex;
2018-11-16 10:33:39 +00:00
//flex-grow: 0;
//flex-basis : 150px;
flex-shrink: 0;
2018-10-05 09:37:48 +00:00
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-11-12 17:51:08 +00:00
#notifications-button {
2018-10-05 09:37:48 +00:00
@include icon(bell);
font-size: 1.5em;
2018-11-12 17:51:08 +00:00
cursor: pointer;
list-style-type: none;
}
#notifications{
position: absolute;
right: 0;
bottom: 0;
height: 0;
left: 0;
z-index: 1;
>div{
position: absolute;
top: 0;
right: 0;
}
2018-10-05 09:37:48 +00:00
}
#profile {
> * {
vertical-align: middle;
}
img {
margin-right: 0.5em;
2018-10-12 17:11:13 +00:00
width: 43px;
height: 43px;
object-fit: cover;
object-position: center;
border-radius: 100%;
2018-10-05 09:37:48 +00:00
}
2018-09-28 19:20:15 +00:00
}
2018-11-16 10:33:39 +00:00
.layer{
position:absolute;
bottom:0;top:0;right:0;left:0;
display:flex;
flex-direction: column;
align-items: stretch;
overflow-x: hidden;
}
2018-09-28 19:20:15 +00:00
#subContainer {
display: flex;
2018-11-16 10:33:39 +00:00
flex-grow: 1;
align-items: stretch;
overflow: hidden;
2018-09-28 19:20:15 +00:00
}
#mainContainer {
2018-11-16 10:33:39 +00:00
flex-grow: 1;
flex-shrink: 1;
overflow-y: auto;
2018-09-28 19:20:15 +00:00
}
2018-10-08 08:49:31 +00:00
.limiter {
2018-10-05 09:37:48 +00:00
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 {
2018-10-08 08:49:31 +00:00
font-family: monospace;
color: $color-black;
2018-10-05 09:37:48 +00:00
display: block;
2018-10-08 08:49:31 +00:00
background-color: $color-grey-light2;
2018-10-05 09:37:48 +00:00
sib-route {
display: block;
2018-10-08 08:49:31 +00:00
cursor: pointer;
2018-10-05 09:37:48 +00:00
> div {
position: relative;
2018-10-08 08:49:31 +00:00
padding: 1.5em 3em;
border-bottom: 1px solid $color-grey;
}
&:hover {
background-color: $color-grey;
2018-10-05 09:37:48 +00:00
}
&[active] {
font-weight: bold;
2018-10-08 08:49:31 +00:00
background-color: $color-black;
color: $color-yellow;
2018-10-05 09:37:48 +00:00
> div:before {
2018-10-08 08:49:31 +00:00
opacity: 1;
2018-10-05 09:37:48 +00:00
transform: translateX(-150%);
2018-10-08 08:49:31 +00:00
transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
}
> div {
@include icon(arrow-left);
&:before {
position: absolute;
transform: translateX(-50%);
opacity: 0;
2018-10-05 09:37:48 +00:00
}
}
}
}
> 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;
}
}
}
2018-10-08 08:49:31 +00:00
sib-route,
sib-trigger {
cursor: pointer;
}
2018-10-05 09:37:48 +00:00
sib-trigger.back {
display: block;
@include icon('arrow-left');
@extend h1;
}