p5.js-web-editor/client/styles/components/_nav.scss

227 lines
4.6 KiB
SCSS
Raw Normal View History

2016-06-10 04:15:50 +02:00
.nav {
2017-07-17 23:09:46 +02:00
height: #{42 / $base-font-size}rem;
2016-06-10 04:15:50 +02:00
display: flex;
flex-direction: row;
2016-06-17 20:11:52 +02:00
justify-content: space-between;
2016-09-15 00:38:57 +02:00
@include themify() {
2016-09-22 03:46:23 +02:00
border-bottom: 1px dashed map-get($theme-map, 'inactive-text-color');
2016-09-15 00:38:57 +02:00
}
2017-07-25 21:35:18 +02:00
& button {
padding: 0;
}
2017-07-17 23:09:46 +02:00
}
.nav__items-left, .nav__items-right {
2016-06-10 04:15:50 +02:00
list-style: none;
display: flex;
flex-direction: row;
justify-content: flex-end;
2017-07-17 23:09:46 +02:00
height: 100%;
2017-07-25 21:35:18 +02:00
align-items: center;
2016-06-17 20:11:52 +02:00
}
2017-03-30 19:22:23 +02:00
.nav__items-left {
& button {
@include themify() {
2017-07-25 21:35:18 +02:00
color: getThemifyVariable('secondary-text-color');
2017-03-30 19:22:23 +02:00
}
}
}
2016-06-17 20:11:52 +02:00
.nav__item {
2016-08-28 02:46:20 +02:00
position: relative;
2017-07-25 21:35:18 +02:00
padding: 0 #{10 / $base-font-size}rem;
2017-07-17 23:09:46 +02:00
display: flex;
align-items: center;
justify-content: center;
2017-07-25 21:35:18 +02:00
height: 100%;
2016-08-28 02:46:20 +02:00
}
.nav__item:first-child {
padding-left: #{15 / $base-font-size}rem;
}
.nav__item:last-child {
padding-right: #{15 / $base-font-size}rem;
}
2017-07-25 21:35:18 +02:00
.nav__item-header {
margin-right: #{5 / $base-font-size}rem;
}
2017-10-11 18:56:44 +02:00
.nav__item:hover {
.nav__item-header {
@include themify() {
color: getThemifyVariable('nav-hover-color');
}
}
.nav__item-header-triangle polygon {
@include themify() {
fill: getThemifyVariable('nav-hover-color');
}
}
}
2016-08-28 02:46:20 +02:00
.nav__dropdown {
2016-09-22 01:00:24 +02:00
@include themify() {
background-color: map-get($theme-map, 'modal-background-color');
border: 1px solid map-get($theme-map, 'modal-border-color');
2017-07-25 21:35:18 +02:00
box-shadow: 0 0 18px 0 getThemifyVariable('shadow-color');
color: getThemifyVariable('dropdown-color');
2016-08-28 02:46:20 +02:00
}
2017-07-19 23:35:25 +02:00
display: none;
text-align: left;
2017-07-25 21:35:18 +02:00
width: #{180 / $base-font-size}rem;
2017-10-11 18:56:44 +02:00
.nav__item--open & {
2016-09-22 01:00:24 +02:00
display: flex;
position: absolute;
flex-direction: column;
2017-07-25 21:35:18 +02:00
top: 4px;
2017-07-19 23:35:25 +02:00
left: 0;
2016-09-22 01:00:24 +02:00
height: auto;
}
2017-07-25 21:35:18 +02:00
z-index: 9999;
border-radius: #{6 / $base-font-size}rem;
}
.nav__items-right {
padding-right: #{20 / $base-font-size}rem;
& .nav__dropdown {
width: #{121 / $base-font-size}rem;
}
}
2016-12-19 23:56:39 +01:00
.nav__item-spacer {
@include themify() {
color: map-get($theme-map, 'inactive-text-color');
2017-08-07 21:56:30 +02:00
margin: 0 #{8 / $base-font-size}rem;
}
}
.nav__dropdown a, button {
@include themify() {
color: getThemifyVariable('secondary-text-color');
}
}
.nav__dropdown button {
padding: 0;
}
.nav__dropdown a:hover {
@include themify() {
color: getThemifyVariable('primary-text-color');
}
}
.nav__dropdown-heading {
@include themify() {
border-bottom: 1px dashed map-get($theme-map, 'inactive-text-color');
}
2017-07-25 21:35:18 +02:00
height: #{(42 - 5) / $base-font-size}rem;
display: flex;
align-items: center;
justify-content: space-between;
margin: 0 #{16 / $base-font-size}rem;
2017-10-11 18:56:44 +02:00
cursor: pointer;
&:hover {
span {
@include themify() {
color: getThemifyVariable('nav-hover-color');
}
}
polygon {
@include themify() {
fill: getThemifyVariable('nav-hover-color');
}
}
}
}
.nav__dropdown-heading a, .nav__dropdown-heading a:hover {
@include themify() {
color: getThemifyVariable('inactive-text-color');
}
cursor: default;
width: 100%;
}
2017-07-25 21:35:18 +02:00
.nav__dropdown-heading svg {
transform-origin: 50% 50%;
transform: rotate(180deg);
}
.nav__dropdown-item {
height: #{32 / $base-font-size}rem;
width: 100%;
display: flex;
align-items: center;
padding: 0 #{16 / $base-font-size}rem;
cursor: pointer;
& button, & a {
@include themify() {
color: getThemifyVariable('dropdown-color');
}
}
&:hover {
@include themify() {
background-color: getThemifyVariable('button-background-hover-color');
color: getThemifyVariable('button-hover-color')
}
& button, & a {
@include themify() {
color: getThemifyVariable('button-hover-color');
}
}
}
2017-09-01 19:38:40 +02:00
& button, & a {
width: 100%;
height: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
2017-07-25 21:35:18 +02:00
}
.nav__dropdown-item:last-child {
border-radius: 0 0 #{6 / $base-font-size}rem #{6 / $base-font-size}rem;
}
.nav__announce {
position: absolute;
top: #{40 / $base-font-size}rem;
right: #{88 / $base-font-size}rem;
width: #{398 / $base-font-size}rem;
padding: #{5 / $base-font-size}rem 0;
text-transform: uppercase;
background-color: #ffbc00;
color: white;
text-align: center;
padding: #{7 / $base-font-size}rem #{8 / $base-font-size}rem;
line-height: 145%;
z-index: 0;
}
.nav__item-logo {
position: relative;
height: #{42 / $base-font-size}rem;
width: #{56 / $base-font-size}rem;
& span {
position: absolute;
}
}
2017-09-01 19:38:40 +02:00
.nav__keyboard-shortcut {
font-size: #{12 / $base-font-size}rem;
font-family: Inconsololata, monospace;
@include themify() {
color: getThemifyVariable('keyboard-shortcut-color');
}
.nav__dropdown-item:hover & {
@include themify() {
color: getThemifyVariable('button-hover-color');
}
}
}