You will need to clear the server cache by touching the Web.config or recycle the app pool, then clear the browser cache.
The stylesheet will not be attached, it will be combined into one request with all the other css files listed in style.config.
While you are designing its best to disable the caching by set these to false:
<add key="CacheCssOnServer" value="true" />
<add key="CacheCssInBrowser" value="true" />
but afterwards best to re-enable caching.
Hope it helps,
Joe