1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-25 08:09:43 +02:00

Implement new refactored color scheme

This commit is contained in:
Harvey Kandola 2018-12-04 17:26:57 +00:00
parent da0861b3fd
commit d7a46ceee6
70 changed files with 934 additions and 521 deletions

View file

@ -3,7 +3,7 @@
}
.top-bar {
background-color: $color-primary;
background-color: $theme-500;
color: $color-white;
padding: 0 2rem;
font-size: 1rem;
@ -40,12 +40,12 @@
}
> .selected {
background-color: $color-primary-light !important;
color: $color-primary !important;
background-color: $theme-500 !important;
color: $theme-500 !important;
padding: 5px 10px !important;
&:hover {
color: darken($color-primary, 15%) !important;
color: darken($theme-500, 15%) !important;
}
}
}
@ -63,23 +63,23 @@
> .hamburger {
@include ease-in();
@include border-radius(3px);
background-color: $color-primary;
border: 1px solid $color-primary-light;
background-color: $theme-500;
border: 1px solid $theme-100;
> i {
font-size: 1.8rem;
line-height: 2.1rem;
padding: 0px 3px 0px 3px;
color: $color-primary-light;
color: $theme-100;
cursor: pointer;
vertical-align: sub;
}
&:hover {
background-color: $color-primary-light;
background-color: $theme-100;
> i {
color: $color-primary;
color: $theme-500;
}
}
}