このsassコードを取り入れようとしていますが、うまくいきません。実装方法を教えてください。
@charset "utf-8";
/* CSS Document */
h1 { color:#0ec3f7;}
$divColor : #f8f9be;
$borderStyle : dotted;
$width : 700px;
$height : 200px;
#first {background-color:divColor; border:1px borderStyle #F00; width:width; height:height;}
これがhtmlファイル
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>css-saas-less</title>
<link rel="stylesheet" href="sasstemp.scss" />
</head>
<body>
<h1> CSS preprocessors </h1>
<div id="first">welcome to sass.....
</div></body>
</html>