Всем привет
Есть такой файл index.scss
@import "colors.css";
@import "font.css";
@import "normalize.css";
@import "_bootstrap.scss";
html {
font-size: 100%;
}
/*--------------------------------------- Main Styles (Global styles for elements)------------------------------------*/
.cf:before, .cf:after {
content: " ";
display: table
}
.cf:after {
clear: both
}
.f_left {
float: left
}
.f_right {
float: right
}
Есть style.scss :
@import "../scss/index";
html {
background: $dark-grey;
}
И html с включением style.css :
<link rel="stylesheet" href="style.css">
но почему то не видит стили с colors и другие. В чем проблема?