1
1
Fork 0
mirror of https://gitlab.com/Oreolek/cloak-salet.git synced 2024-06-26 03:50:51 +03:00

Color scheme

This commit is contained in:
Alexander Yakovlev 2017-08-02 16:17:02 +07:00
parent 1b9bddcd8b
commit 9c569030c1
2 changed files with 11 additions and 6 deletions

View file

@ -6,7 +6,8 @@ $font-family-base: $font-family-serif;
$body-bg: #eee;
$body-color: #000;
$link-color: darkviolet;
$body-color-night: #fefefe;
$link-color: #4400b9;
$btn-bg: grey;
$btn-color: lighten($btn-bg, 50%);
$secondary-bg: #F1EED9;

View file

@ -20,10 +20,6 @@ body {
.container {
@include make-container();
@include make-container-max-widths();
border-radius: 5px;
// border-style: solid;
// border-width: 81px 103px 77px 66px;
// border-image: url(../img/border.png) 81 103 77 66 repeat;
}
.ways_wrapper {
@include make-row();
@ -226,11 +222,19 @@ hr {
.night {
background-image: radial-gradient(circle,rgba(0,0,0,.7),rgba(0,0,0,1)) !important;
background-size: 100% 100%;
color: #fefefe;
color: $body-color-night !important;
.nav-item {
a {
color: $body-color-night !important;
}
}
a {
color: lighten($link-color, 30%);
}
.btn-outline-primary {
color: #777;
}
.tab.active {
background: #333 !important;
}
}