diff -r 97536386b397 -r 57d63a248f0d client/src/scss/_custom.scss --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/client/src/scss/_custom.scss Fri Aug 31 15:14:18 2018 +0200 @@ -0,0 +1,35 @@ +@import "bootstrap/scss/functions"; +@import "bootstrap/scss/variables"; + +$theme-colors: ( + "primary": #769FED, + "secondary": white, + "danger": rgba(196, 196, 196, .5) +); + +$link-color: theme-color("secondary"); +$link-hover-color: darken($link-color, 15%); + +$component-active-bg: theme-color("secondary"); + +//Dropdowns +$dropdown-padding-y: 1rem; +$dropdown-link-color: theme-color("secondary"); +$dropdown-item-padding-y: .7rem; +$dropdown-item-padding-x: .5rem; + + + +// Navs +$nav-link-padding-y: .2rem; +$navbar-brand-font-size: 30px; +$navbar-light-color: darken((theme-color("secondary")), 2%); +$navbar-light-hover-color: theme-color("secondary"); +$navbar-light-active-color: theme-color("secondary"); +$navbar-light-toggler-border-color: transparent; + +//Modals +$modal-content-border-width: .1rem; + + +@import "bootstrap/scss/bootstrap";