blob: 3cb280fa524f76a734f17c6d59fb0bdbdcb146d0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | @import '../../node_modules/materialize-css/sass/components/color-variables';
@import 'variables.scss';
@import '../../node_modules/materialize-css/sass/materialize.scss';
@import '../common/index.scss';
.progress {
  background-color: color('grey', 'darken-3');
  & > .determinate {
    background-color: color('blue', 'base');
  }
}
html {
  background-color: $bg-color;
}
input[type=email],
input[type=text],
input[type=password],
textarea {
	color: $off-black;
}
 |