Решил попробовать что за зверь SCSS. Делаю по инструкции с
foundation.zurb.com/docs/sass.html
После компиляции (grunt build) получается CSS файл в три раза больше чем если скачивать уже собранный проект. И так же повторяются стили типа
html, body {
height: 100%; }
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
html, body {
font-size: 100%; }
body {
background: white;
color: #222222;
padding: 0;
margin: 0;
font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
font-weight: normal;
font-style: normal;
line-height: 1.5;
position: relative;
cursor: auto; }
a:hover {
cursor: pointer; }
img {
max-width: 100%;
height: auto; }
Что я делаю не так?