Primary Language: Velocity
Frameworks: Cascade CMS
Hosted By: IS&T
Blogs
| { | |
| "folders": [{ | |
| "follow_symlinks": true, | |
| "path": "." | |
| }], | |
| "settings": { | |
| "detect_indentation": false, | |
| "ensure_newline_at_eof_on_save": true, | |
| "tab_size": 2, | |
| "file_exclude_patterns": [ |
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>White Plum Kitchen Sink - Bootstrap 3 Theme</title> | |
| <meta name="viewport" content="width=device-width"> | |
| <link rel="stylesheet" href="../dist/css/bootstrap.css"> | |
| <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> | |
| <script type="text/javascript" src="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> |
| @mixin bp($point) { | |
| @if $point == print { | |
| @media only print { @content; } | |
| } | |
| } | |
| @mixin em_width($px) { width: #{$px / 16}em; } | |
| @mixin em_maxwidth($px) { max-width: #{$px / 16}em; } |
| function countCSSRules() { | |
| var results = '', | |
| log = ''; | |
| if (!document.styleSheets) { | |
| return; | |
| } | |
| for (var i = 0; i < document.styleSheets.length; i++) { | |
| countSheet(document.styleSheets[i]); | |
| } | |
| function countSheet(sheet) { |