This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
indent_style = space | |
indent_size = 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tinymce.init({ | |
plugins: 'charactercount', | |
elementpath: false | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin font-face($name, $file, $weight, $style, $stretch) { | |
@font-face { | |
font-family: $name; | |
src: url('#{$file}.woff') format('woff'); // Add more of these if need multiple font formats for broader browser support | |
font-weight: $weight; | |
font-style: $style; | |
font-stretch: $stretch; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
video { | |
position: fixed; /* or absolute if fullscreen in parent */ | |
top: 50%; | |
left: 50%; | |
min-width: 100%; | |
min-height: 100%; | |
width: auto; | |
height: auto; | |
z-index: -100; | |
-ms-transform: translateX(-50%) translateY(-50%); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
// System | |
"folder_exclude_patterns": [], | |
"ignored_packages": [ | |
"SublimeLinter", | |
"Vintage" | |
], | |
// Formatting | |
"tab_size": 4, | |
"tabs_small": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Gulp plugins | |
var gulp = require('gulp'), | |
$ = require('gulp-load-plugins')(); | |
browserSync = require('browser-sync'), | |
reload = browserSync.reload; | |
// Config | |
var AUTOPREFIXER_BROWSERS = ['last 2 versions']; | |
var SCSS_DIR = 'app/styles/scss/'; | |
var STYLES_DIR = 'app/styles/'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ajax = { | |
newRequest: function(method, url, params, callback, context) { | |
this.context = context; | |
this.req = new XMLHttpRequest(); | |
this.req.open(method, url, true); | |
if(params) { | |
this.params = this.encodeParams(params); | |
} else { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head></head> | |
<body> | |
<header>...</header> | |
<div>...</div> | |
<footer>...</footer> |
NewerOlder