2014-08-01 15:27:08 +02:00
|
|
|
/*
|
2014-11-02 13:47:35 +01:00
|
|
|
*= require rails_bootstrap_forms
|
2014-11-28 21:35:44 +01:00
|
|
|
*= require growl
|
2014-12-29 15:47:10 +01:00
|
|
|
*= require jquery.guillotine
|
2015-01-03 16:51:57 +01:00
|
|
|
*= require sweet-alert
|
2015-08-25 20:27:06 +02:00
|
|
|
*= require jquery.minicolors
|
2015-06-21 09:03:29 +02:00
|
|
|
*= require flags
|
2015-01-03 19:43:51 +01:00
|
|
|
*= require_self
|
2014-08-01 15:27:08 +02:00
|
|
|
*/
|
2014-11-02 19:02:53 +01:00
|
|
|
|
2015-03-03 20:15:43 +01:00
|
|
|
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
|
2014-11-28 20:23:17 +01:00
|
|
|
|
2015-03-03 19:58:22 +01:00
|
|
|
$font-family-sans-serif: "Lato","Open Sans", "Helvetica Neue", Helvetica, "DejaVu Sans", Arial, sans-serif;
|
2014-11-28 21:17:50 +01:00
|
|
|
$font-family-serif: Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
|
|
|
|
//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
|
2015-01-13 22:55:45 +01:00
|
|
|
$font-family-monospace: "PragmataPro", Monaco, "Ubuntu Mono", Menlo, "DejaVu Sans Mono", monospace;
|
2014-11-28 21:17:50 +01:00
|
|
|
$font-family-base: $font-family-sans-serif;
|
|
|
|
|
|
|
|
$font-size-base: 14px;
|
|
|
|
$font-size-large: ceil(($font-size-base * 1.25)); // ~18px
|
|
|
|
$font-size-small: ceil(($font-size-base * 0.85)); // ~12px
|
|
|
|
|
|
|
|
$font-size-h1: floor(($font-size-base * 2.6)); // ~36px
|
|
|
|
$font-size-h2: floor(($font-size-base * 2.15)); // ~30px
|
|
|
|
$font-size-h3: ceil(($font-size-base * 1.7)); // ~24px
|
|
|
|
$font-size-h4: ceil(($font-size-base * 1.25)); // ~18px
|
|
|
|
$font-size-h5: $font-size-base;
|
|
|
|
$font-size-h6: ceil(($font-size-base * 0.85)); // ~12px
|
|
|
|
|
2015-01-13 22:37:02 +01:00
|
|
|
$brand-primary: #5e35b1;
|
2015-01-13 21:53:47 +01:00
|
|
|
$navbar-inverse-bg: #5e35b1;
|
|
|
|
$navbar-inverse-link-color: #ffffff;
|
2015-04-22 00:22:18 +02:00
|
|
|
$navbar-inverse-link-hover-color: #ffffff;
|
2015-01-13 21:53:47 +01:00
|
|
|
$navbar-inverse-link-hover-bg: transparent;
|
2015-04-22 00:22:18 +02:00
|
|
|
$navbar-inverse-link-active-color: #ffffff;
|
|
|
|
$navbar-inverse-link-active-bg: transparent;
|
2015-04-22 03:42:12 +02:00
|
|
|
$navbar-inverse-link-active-bg-mobile: darken(#5e35b1, 7%);
|
2015-01-13 21:53:47 +01:00
|
|
|
$navbar-inverse-link-disabled-color: darken(#fff, 12.5%);
|
|
|
|
$navbar-inverse-link-disabled-bg: transparent;
|
|
|
|
$navbar-inverse-brand-color: $navbar-inverse-link-color;
|
|
|
|
$navbar-inverse-brand-hover-color: darken($navbar-inverse-link-color, 10%);
|
|
|
|
$navbar-inverse-brand-hover-bg: transparent;
|
|
|
|
$navbar-inverse-toggle-hover-bg: #512da8;
|
|
|
|
$navbar-inverse-toggle-icon-bar-bg: #7e57c2;
|
|
|
|
$navbar-inverse-toggle-border-color: #512da8;
|
2015-01-13 21:54:56 +01:00
|
|
|
|
2015-04-19 16:49:53 +02:00
|
|
|
@import "bootswatch/cosmo/variables";
|
2015-01-13 22:55:45 +01:00
|
|
|
|
2015-01-13 21:54:56 +01:00
|
|
|
@import "bootstrap";
|
2015-04-23 21:07:39 +02:00
|
|
|
|
2015-01-13 21:54:56 +01:00
|
|
|
body { padding-top: $navbar-height; }
|
2015-04-23 21:07:39 +02:00
|
|
|
|
|
|
|
@import 'bootstrap-datetimepicker';
|
|
|
|
.remove-native-picker::-webkit-calendar-picker-indicator{
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
|
2015-04-19 16:49:53 +02:00
|
|
|
@import "bootswatch/cosmo/bootswatch";
|
2015-01-13 21:54:56 +01:00
|
|
|
|
|
|
|
@import "base";
|
|
|
|
|
|
|
|
@import "font-awesome";
|
|
|
|
|
2015-01-27 17:53:05 +01:00
|
|
|
$nprogress-color: lighten($navbar-inverse-bg, 25%);
|
2015-01-13 19:49:43 +01:00
|
|
|
@import 'nprogress';
|
2015-01-13 22:55:45 +01:00
|
|
|
@import 'nprogress-bootstrap';
|
2015-08-25 20:27:06 +02:00
|
|
|
|
|
|
|
.minicolors-theme-bootstrap .minicolors-swatch {
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 42px;
|
|
|
|
height: 42px;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|