juggl/src/style/theme.sass

140 lines
3.4 KiB
Sass
Raw Normal View History

2020-12-20 17:27:26 +01:00
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,400;0,700;1,400;1,700&display=swap')
// Color scheme
$grey: #BBB
$black: #000
$white: #fff
$primary: #F00
$secondary: $grey
2021-01-01 16:35:35 +01:00
$red: $primary
2020-12-20 17:27:26 +01:00
$background-primary: #222
2021-01-03 20:37:15 +01:00
$background-secondary: #191919
2020-12-20 17:27:26 +01:00
// $background-gradient: linear-gradient(165deg, $background-primary 65%, $background-secondary 100%)
$font-primary: $white
2021-01-03 20:37:15 +01:00
$font-inactive: $grey
2020-12-20 17:27:26 +01:00
$font-secondary: $primary
$font-inverted: $black
$font-link: $secondary
// Default text
*
font-family: "Karla", sans-serif
color: $font-primary
transition-duration: 0.1s
::selection
background: $primary
color: $black
// Components
$navbar-height: 4rem
body
background: $background-primary !important
2021-01-03 12:29:41 +01:00
margin: 0
2020-12-20 17:27:26 +01:00
// background: $background-primary !important
// background: -moz-linear-gradient(165deg, $background-primary 65%, $background-secondary 100%) !important
// background: -webkit-linear-gradient(165deg, $background-primary 65%, $background-secondary 100%) !important
// background: linear-gradient(165deg, $background-primary 65%, $background-secondary 100%) !important
// background-attachment: fixed !important
.hidden
display: none
.form-group
label
color: $font-secondary
2021-01-03 12:29:41 +01:00
margin-bottom: -0.1em
margin-left: 0.1em
2020-12-20 17:27:26 +01:00
input
background-color: $background-primary !important
color: $font-primary !important
a
color: $font-link !important
2021-01-03 20:37:15 +01:00
&:hover
color: $background-primary !important
2020-12-20 17:27:26 +01:00
2021-01-01 16:35:35 +01:00
.b-dropdown, .dropdown
border-radius: 0
background: #0000
2021-01-03 12:29:41 +01:00
.dropdown-menu
background-color: $background-primary !important
border: 1px solid $primary !important
2021-01-01 16:35:35 +01:00
color: $primary
2021-01-03 12:29:41 +01:00
.b-time *,
background-color: $background-primary !important
#dropdown .dropdown-menu
2021-01-01 16:35:35 +01:00
*:hover
color: $white !important
2021-01-03 12:29:41 +01:00
background: darken($primary, 20) !important
2021-01-01 16:35:35 +01:00
*:active
color: $white !important
2021-01-03 12:29:41 +01:00
background: $primary !important
2021-01-01 16:35:35 +01:00
2021-01-03 12:29:41 +01:00
.custom-checkbox
label
color: $font-primary !important
2020-12-20 17:27:26 +01:00
2021-01-03 12:29:41 +01:00
a.btn-secondary, a.btn-primary
color: $font-primary !important
2020-12-20 17:27:26 +01:00
2021-01-03 12:29:41 +01:00
#title
font-weight: bold
2020-12-20 17:27:26 +01:00
2021-01-03 12:29:41 +01:00
.breadcrumb
background-color: #FFF0 !important
2020-12-20 17:27:26 +01:00
2021-01-03 12:29:41 +01:00
.breadcrumb-item + .breadcrumb-item::before
content: ">" !important
2020-12-20 17:27:26 +01:00
2021-01-03 12:29:41 +01:00
.breadcrumb-item.active
span
color: $font-secondary !important
2020-12-20 17:27:26 +01:00
// .modal-content
// background-color: $background-primary
2021-01-03 12:29:41 +01:00
// .modal-header button.close
// color: $font-primary !important
header.b-calendar-grid-caption, .b-calendar-grid-weekdays *, header.b-calendar-header *
color: $font-inverted !important
2020-12-20 17:27:26 +01:00
2021-01-03 12:29:41 +01:00
.b-form-datepicker, .b-form-timepicker
background-color: $background-primary !important
2020-12-20 17:27:26 +01:00
2021-01-03 12:29:41 +01:00
.b-form-datepicker label:not(.text-muted), .b-form-timepicker label:not(.text-muted)
color: $font-primary !important
2021-01-03 20:37:15 +01:00
input:disabled, .b-form-timepicker[aria-disabled=true], .b-form-datepicker[aria-disabled=true]
color: $font-inactive !important
border-color: $background-primary !important
2021-01-03 12:29:41 +01:00
input
color: $font-primary !important
border-color: $grey !important
background-color: $background-primary !important
select
background-color: $background-primary !important
color: $font-primary !important
2020-12-20 17:27:26 +01:00
2021-01-03 20:37:15 +01:00
div.card
background-color: $background-secondary
border-color: $white
pre
color: $font-primary !important
2020-12-20 17:27:26 +01:00
2021-01-03 12:29:41 +01:00
// Import Bootstrap and BootstrapVue source SCSS files
@import '~bootstrap/scss/bootstrap.scss'
@import '~bootstrap-vue/src/index.scss'