|
@@ -1,21 +1,22 @@
|
|
|
@import '../variables';
|
|
@import '../variables';
|
|
|
|
|
+$radius: 5px;
|
|
|
|
|
|
|
|
-$themecolor: #ffb6c1;
|
|
|
|
|
-$subthemecolor: #ee82ee;
|
|
|
|
|
|
|
+$themecolor: #ffb8c6;
|
|
|
|
|
+$buttoncolor: rgba(255, 184, 197, 0.5);
|
|
|
|
|
+$subthemecolor: #67a856;
|
|
|
$themelight: #fff0f5;
|
|
$themelight: #fff0f5;
|
|
|
$topbar: $themecolor;
|
|
$topbar: $themecolor;
|
|
|
$sidebar: #fff;
|
|
$sidebar: #fff;
|
|
|
-$bodycolor: #fff;
|
|
|
|
|
-$headingtext: #da70d6;
|
|
|
|
|
|
|
+$bodycolor: $sidebar;
|
|
|
|
|
+$headingtext: $subthemecolor;
|
|
|
$bodytext: #333333;
|
|
$bodytext: #333333;
|
|
|
$linktext: $subthemecolor;
|
|
$linktext: $subthemecolor;
|
|
|
$linktext-hover: lighten($linktext, 20%);
|
|
$linktext-hover: lighten($linktext, 20%);
|
|
|
$sidebar-text: #38495a;
|
|
$sidebar-text: #38495a;
|
|
|
-$accentcolor: #ee82ee;
|
|
|
|
|
-$background-color: rgba(
|
|
|
|
|
- $color: $themelight,
|
|
|
|
|
- $alpha: 0.8,
|
|
|
|
|
-);
|
|
|
|
|
|
|
+$accentcolor: #e08dbc;
|
|
|
|
|
+$accentlight: rgba(224, 141, 188, 0.2);
|
|
|
|
|
+$accentdark: rgba(224, 141, 188, 0.5);
|
|
|
|
|
+$background-color: rgba(171, 224, 174, 0.4);
|
|
|
|
|
|
|
|
$primary: $themecolor;
|
|
$primary: $themecolor;
|
|
|
|
|
|
|
@@ -83,26 +84,30 @@ header.affix {
|
|
|
.text-info,
|
|
.text-info,
|
|
|
body:not(.on-edit) .nav.nav-tabs {
|
|
body:not(.on-edit) .nav.nav-tabs {
|
|
|
> li > a {
|
|
> li > a {
|
|
|
- color: $themecolor;
|
|
|
|
|
|
|
+ color: $subthemecolor;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
> li.active > a {
|
|
> li.active > a {
|
|
|
- color: $themelight;
|
|
|
|
|
|
|
+ color: $subthemecolor;
|
|
|
background: linear-gradient(
|
|
background: linear-gradient(
|
|
|
rgba($active-nav-tabs-bgcolor, 0) 50%,
|
|
rgba($active-nav-tabs-bgcolor, 0) 50%,
|
|
|
rgba($active-nav-tabs-bgcolor, 0) 90%,
|
|
rgba($active-nav-tabs-bgcolor, 0) 90%,
|
|
|
$active-nav-tabs-bgcolor 100%
|
|
$active-nav-tabs-bgcolor 100%
|
|
|
); // overwrite only the bottom pixel
|
|
); // overwrite only the bottom pixel
|
|
|
- background-color: $themecolor;
|
|
|
|
|
|
|
+ background-color: $themelight;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
/*
|
|
|
* button
|
|
* button
|
|
|
*/
|
|
*/
|
|
|
-button:not(.btn-link):not(.dropdown-toggle) {
|
|
|
|
|
- border-radius: 10%;
|
|
|
|
|
- box-shadow: 2px 2px 4px gray;
|
|
|
|
|
|
|
+
|
|
|
|
|
+.btn-link {
|
|
|
|
|
+ color: $subthemecolor;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.label-default {
|
|
|
|
|
+ background-color: $themecolor;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
div .btn-inverse {
|
|
div .btn-inverse {
|
|
@@ -111,8 +116,22 @@ div .btn-inverse {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
div .btn-default {
|
|
div .btn-default {
|
|
|
- background-color: $themecolor;
|
|
|
|
|
- border-color: $themecolor;
|
|
|
|
|
|
|
+ background-color: $accentlight;
|
|
|
|
|
+ border-color: $accentdark;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.admin-page .btn-group.btn-toggle .btn.active[data-active-class='primary'] {
|
|
|
|
|
+ color: $sidebar;
|
|
|
|
|
+ background-color: $accentcolor;
|
|
|
|
|
+ border-color: $accentdark;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+button .btn-outline {
|
|
|
|
|
+ background-color: $themelight;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+input .btn-secondary {
|
|
|
|
|
+ background: $themecolor;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
/*
|