summaryrefslogtreecommitdiff
path: root/templates/assets/sass/material-kit/_core.scss
blob: 986d480fef3ef12e529f2e1d04490a3baa9067f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
// This file has been autogenerated by grunt task lessToSass. Any changes will be overwritten.

body {
  background-color: #CCCCCC;
  &.inverse {
    background: #333333;
    &, .form-control {
      color: $mdb-text-color-light;
    }
    .modal,
    .panel-default,
    .card {
      &,
      .form-control {
        background-color: initial;
        color: initial;
      }
    }

  }
}

.life-of-material-kit{
    background: #FFFFFF;
}
body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4 {
  font-family: $font-family-sans-serif;
  font-weight: 300;
  line-height: 1.5em;
}

a, a:hover, a:focus {
  color: $link-color;

  & .material-icons {
    vertical-align: middle;
  }
}

/*           Animations              */

.animation-transition-general{
    @include transition($general-transition-time, $transition-linear);
}

.animation-transition-slow{
    @include transition($slow-transition-time, $transition-linear);
}

.animation-transition-fast{
    @include transition($fast-transition-time, $transition-ease);
}

@import '_form';
//@import '_welljumbo';   // Not designed yet by Creative Tim, you can use it as it is
@import '_buttons';
@import '_checkboxes';
@import '_togglebutton';
@import '_radios';
@import '_inputs';
@import '_pagination';
@import '_labels';
@import '_pills';
@import '_footers';

legend {
  border-bottom: 0;
}

//@import '_lists';  // Not designed yet by Creative Tim, you can use it as it is
@import '_navbar';

@import '_dropdown';
@import '_info-areas';
@import '_alerts';
@import '_progress';
@import '_typography';
@import '_tabs';
@import '_popups';
@import '_carousel';
@import '_cards';
@import '_dialogs';
@import '_panels';
@import '_dividers';

@import '_images';


// Prevent highlight on mobile
* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  &:focus {
    outline: 0;
  }
}
a:focus, a:active,
button:active, button:focus, button:hover,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    outline : 0 !important;
}

@import '_sections';

// External plugins
// @import 'plugins/_plugin-snackbarjs';   // Not designed yet by Creative Tim, you can use it as it is
@import 'plugins/_plugin-nouislider';
//@import 'plugins/_plugin-selectize';     // Not designed yet by Creative Tim, you can use it as it is
@import 'plugins/_plugin-dropdownjs';
@import 'plugins/_plugin-datepicker';