Skip to content

Instantly share code, notes, and snippets.

View dropddesigns's full-sized avatar

Drop D Designs dropddesigns

  • Drop-D Designs
  • Perth, Australia
View GitHub Profile
@dropddesigns
dropddesigns / SASS - Both.sublime-build
Created May 5, 2016 06:39
SASS Build script to build both uncompressed and compress CSS files
{
"cmd": [
"sass", "--update", "--watch", "$file:${file_path}/${file_base_name}.css", "--sourcemap=none", "--stop-on-error", "--no-cache", "--style", "expanded",
"&",
"sass", "--update", "$file:${file_path}/${file_base_name}.min.css", "--stop-on-error", "--no-cache", "--style", "compressed"
],
"selector": "source.sass, source.scss",
"line_regex": "Line ([0-9]+):",
<!doctype html>
<html lang="en-AU">
<head>
<meta charset="utf-8" />
<style>
html {
box-sizing: border-box;
}
*, *:before, *:after {