45 lines
1.0 KiB
SCSS
Vendored
45 lines
1.0 KiB
SCSS
Vendored
|
|
// Fonts
|
|
@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,600);
|
|
|
|
// Variables
|
|
@import "variables";
|
|
|
|
// Bootstrap
|
|
// @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
|
|
|
|
@import "node_modules/icheck/skins/square/blue";
|
|
|
|
@import "node_modules/ladda/dist/ladda-themeless.min";
|
|
|
|
@import 'node_modules/@fortawesome/fontawesome-free/scss/fontawesome';
|
|
@import 'node_modules/@fortawesome/fontawesome-free/scss/brands';
|
|
@import 'node_modules/@fortawesome/fontawesome-free/scss/solid';
|
|
|
|
@import "node_modules/jkanban/dist/jkanban.min";
|
|
|
|
@import "node_modules/perfect-scrollbar/css/perfect-scrollbar";
|
|
|
|
@import 'node_modules/patternlock/dist/patternlock.min';
|
|
|
|
@import 'node_modules/@yaireo/tagify/dist/tagify';
|
|
|
|
::-webkit-scrollbar-track
|
|
{
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
|
border-radius: 10px;
|
|
background-color: #F5F5F5;
|
|
}
|
|
|
|
::-webkit-scrollbar
|
|
{
|
|
width: 12px;
|
|
background-color: #F5F5F5;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb
|
|
{
|
|
border-radius: 10px;
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
|
|
background-color: #a8a8a8;
|
|
} |