Files
purple-explorer/public/css/themes/Cerulean/_bootswatch.scss
T
joeuhren 9912c92695 Script updates + directory structure cleanup
-Updated JQuery to v3.5.1
-Updated Bootstrap to v4.5.3
-Updated DataTables to v1.10.22
-Updated FontAwesome to v5.15.1
-Updated Chart.js to v2.9.4
-Updated flag-icon-css to v3.5.0
-All scripts now load minified
-Removed unused/unnecessary scripts (moment.js and some jqPlot plugins)
-Scripts that are not used on every page are now only loaded on pages where they are needed (jqPlot, Chart.js and flag-icon-css)
-Default website language to English
-Enable unicode support
-Removed unused images
-public directory cleanup (images directory renamed to img, javascript directory renamed to js, stylesheets directory renamed to css, themes directory moved from /public/themes to /public/css/themes, removed vendor directory and moved the important contents to the new img, css and js directories)
-Reward.pug rewritten to support Chart.js v2.9.4
-Updated README Features section
2020-12-17 20:01:50 -07:00

103 lines
1.6 KiB
SCSS

// Cerulean 4.5.3
// Bootswatch
// Variables ===================================================================
$text-shadow: 0 1px 0 rgba(0, 0, 0, .05) !default;
// Mixins ======================================================================
@mixin btn-shadow($color){
@include gradient-y-three-colors(lighten($color, 8%), $color, 60%, darken($color, 4%));
}
// Navbar ======================================================================
.bg-primary {
@include btn-shadow($primary);
}
.bg-dark {
@include btn-shadow($blue);
}
.bg-light {
@include gradient-y-three-colors(lighten($gray-200, 8%), $gray-200, 60%, darken($gray-200, 2%));
}
.navbar-brand,
.nav-link {
text-shadow: $text-shadow;
}
// Buttons =====================================================================
.btn {
text-shadow: $text-shadow;
}
.btn-primary {
@include btn-shadow($primary);
}
.btn-secondary {
@include btn-shadow($secondary);
color: $gray-700;
}
.btn-success {
@include btn-shadow($success);
}
.btn-info {
@include btn-shadow($info);
}
.btn-warning {
@include btn-shadow($warning);
}
.btn-danger {
@include btn-shadow($danger);
}
.btn-light {
@include btn-shadow($light);
}
.btn-dark {
@include btn-shadow($dark);
}
// Typography ==================================================================
.text-secondary {
color: $gray-500 !important;
}
.bg-primary,
.bg-success,
.bg-info,
.bg-warning,
.bg-danger,
.bg-dark {
h1,
h2,
h3,
h4,
h5,
h6 {
color: $white;
}
}
// Navs ========================================================================
.dropdown-menu {
.dropdown-header {
color: $gray-600;
}
}