5bf9568e2f
Transform svg files + add them as font. Review and correct HTML architecture. Review and add styles. Open/close menu on right + expand content.
295 lines
4.1 KiB
SCSS
295 lines
4.1 KiB
SCSS
@import 'variables';
|
|
|
|
[hidden] {
|
|
display: none !important;
|
|
}
|
|
|
|
*,
|
|
*::after,
|
|
*::before {
|
|
// box-sizing: inherit;
|
|
}
|
|
|
|
html {
|
|
//box-sizing: border-box;
|
|
font-family: Open Sans, sans-serif;
|
|
font-size: 13px;
|
|
background-color: $color-anti-flash-white;
|
|
color: $color-text-base;
|
|
}
|
|
// body {
|
|
// height: 100%;
|
|
// display:flex;
|
|
// flex-direction: column;
|
|
// }
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
color: $color-dark-lava;
|
|
font-weight: 600;
|
|
padding: 0;
|
|
/*margin: 0.67em 0;*/
|
|
|
|
span {
|
|
font-weight: 400;
|
|
padding-left: 0.5em;
|
|
|
|
&:before {
|
|
content: '// ';
|
|
}
|
|
}
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.24em;
|
|
}
|
|
|
|
h2 { font-size: 20px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 16px;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 0.68em;
|
|
}
|
|
|
|
h5 {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.debug {
|
|
outline: 2px dotted red;
|
|
}
|
|
|
|
#job-offers,
|
|
#members {
|
|
@extend %content-padding;
|
|
}
|
|
|
|
.frame {
|
|
@extend %frame;
|
|
padding: 3em;
|
|
}
|
|
|
|
.menu-notification {
|
|
//flex-basis: 3em;
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
justify-content: center;
|
|
width: 2em;
|
|
|
|
> div {
|
|
align-items: center;
|
|
background-color: $color-mustard;
|
|
border-radius: 100%;
|
|
color: $color-dark-lava;
|
|
display: flex;
|
|
font-size: 12px;
|
|
height: 1.7em;
|
|
justify-content: center;
|
|
width: 1.7em;
|
|
}
|
|
}
|
|
|
|
.layer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
#content {
|
|
display: flex;
|
|
}
|
|
|
|
#mainContainer {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.limiter {
|
|
display: block;
|
|
max-width: 650px;
|
|
}
|
|
/* sub menu (right menu) */
|
|
#mainContainer {
|
|
display: flex;
|
|
> div {
|
|
flex-grow: 1;
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
align-items: stretch;
|
|
overflow-x: hidden;
|
|
|
|
> div {
|
|
//display: flex;
|
|
//margin: 2.6em;
|
|
//padding:2.6em;
|
|
//flex: 1 1 0;
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
#search-bar > div {
|
|
position: relative;
|
|
}
|
|
|
|
#search-icon {
|
|
-webkit-text-stroke: 1px $color-bombay;
|
|
color: $color-bombay;
|
|
pointer-events: none;
|
|
}
|
|
|
|
#close-search-icon,
|
|
#search-icon {
|
|
position: absolute;
|
|
right: 0.8em;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
margin: auto;
|
|
display: block;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
#search-input {
|
|
-webkit-appearance: textfield;
|
|
border-radius: 10em;
|
|
padding: 0.4em 0.8em;
|
|
border: 1px solid $color-bombay;
|
|
height: 2.8rem;
|
|
width: 22rem;
|
|
|
|
& ~ #close-search-icon {
|
|
opacity: 0;
|
|
}
|
|
|
|
&:focus {
|
|
& ~ #close-search-icon {
|
|
opacity: 1;
|
|
}
|
|
|
|
& ~ #search-icon {
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
}
|
|
|
|
sib-route,
|
|
sib-trigger,
|
|
sib-link {
|
|
cursor: pointer;
|
|
}
|
|
|
|
sib-link.back {
|
|
display: block;
|
|
@include icon('arrow-left');
|
|
@extend h1;
|
|
}
|
|
|
|
.containerH {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.containerV {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.grow {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
.fix {
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.containerCenter {
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.reverse {
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
#project-views-container {
|
|
flex: 1 0 0;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.grid-layer{
|
|
display: grid;
|
|
font-size: 16px;
|
|
grid-template-columns: [start]auto[middle]25%[end];
|
|
grid-template-rows: [start]13em[middle]auto[end];
|
|
}
|
|
.grid-layer-main {
|
|
grid-column-start: start;
|
|
grid-column-end: end;
|
|
grid-row-start: start;
|
|
grid-row-end: end;
|
|
}
|
|
.grid-layer-links {
|
|
grid-column-start: middle;
|
|
grid-column-end: end;
|
|
grid-row-start: start;
|
|
grid-row-end: middle;
|
|
}
|
|
|
|
|
|
/*sib-display-lookuplist[name$="skills"] {
|
|
display: flex;
|
|
}*/
|
|
|
|
sib-display-lookuplist {
|
|
display: flex;
|
|
|
|
ul {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
li[name*='skills'] {
|
|
padding: 0.3em 1.2em;
|
|
border: 1px solid;
|
|
border-radius: 2em;
|
|
margin: 0.25em;
|
|
background-color: $color-selective-yellow;
|
|
color: $color-white;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
div[name*='groups'],
|
|
li[name*='groups'] {
|
|
border: 1px solid $color-mikado-yellow;
|
|
border-radius: 3px;
|
|
color: $color-rolling-stone;
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
margin-left: 1em;
|
|
padding: calc(16px - 1em) 0.7em;
|
|
}
|