Skip to content

Instantly share code, notes, and snippets.

@emmgfx
Last active June 15, 2017 15:53
Show Gist options
  • Save emmgfx/559d225d7ac44b7cf481 to your computer and use it in GitHub Desktop.
Save emmgfx/559d225d7ac44b7cf481 to your computer and use it in GitHub Desktop.
Boilerplate
# Editor configuration, see http://editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
max_line_length = off
trim_trailing_whitespace = false
// main: style.scss
$color-primary: black;
$color-accent: green;
body{
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/dist/style.min.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8" />
</head>
<body>
<div class="container">
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>
// compileCompressed: ../dist/style.min.css
@charset "utf-8";
@import "_colors";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment