This file contains 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
# Default application configuration that all configurations inherit from. | |
linters: | |
BorderZero: | |
enabled: true | |
CapitalizationInSelector: | |
enabled: false | |
ColorKeyword: |
This file contains 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
LineLength: | |
Max: 120 | |
Documentation: | |
Enabled: False | |
NegatedIf: | |
Enabled: False | |
SignalException: |
This file contains 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
{ | |
"node": true, | |
"browser": true, | |
"bitwise": false, | |
"boss": true, | |
"camelcase": false, | |
"forin": true, | |
"curly": true, | |
"eqeqeq": true, | |
"immed": true, |
This file contains 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
/* https://justmarkup.com/log/2015/07/dealing-with-long-words-in-css */ | |
.hyphenate { | |
overflow-wrap: break-word; | |
word-wrap: break-word; | |
-webkit-hyphens: auto; | |
-ms-hyphens: auto; | |
-moz-hyphens: auto; | |
hyphens: auto; | |
} |
This file contains 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
// Example 1 | |
.arrow { | |
animation: bounce 1s linear infinite; | |
} | |
@keyframes bounce { | |
0%, 100% { | |
transform: none; | |
/* ease-out cubic */ | |
animation-timing-function: cubic-bezier(.215, .61, .355, 1); |
This file contains 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
$(function() { | |
var $logoInput = $('#logo-input'); | |
var $logoImage = $('.logo-image'); | |
function readURL(input) { | |
if (input.files && input.files[0]) { | |
var reader = new FileReader(); | |
reader.onload = function(e) { |
This file contains 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
/* From: https://jsfiddle.net/josedvq/3HG6d/ */ | |
<div class="triangle-up"></div> | |
<div class="triangle-right"></div> | |
<div class="triangle-down"></div> | |
<div class="triangle-left"></div> |
This file contains 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
.grid { | |
display: table; | |
table-layout: fixed; | |
width: 100%; | |
} | |
.col { | |
display: table-cell; | |
} |
This file contains 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
@font-face { | |
font-family: 'Helvetica Neue'; | |
src: url('HelveticaNeueLTPro-Lt.eot'); | |
src: url('HelveticaNeueLTPro-Lt.eot?#iefix') format('embedded-opentype'), | |
local('Helvetica Neue'), url('HelveticaNeueLTPro-Lt.otf') format('opentype'), | |
url('HelveticaNeueLTPro-Lt.ttf') format('truetype'), | |
url('HelveticaNeueLTPro-Lt.woff') format('woff'), | |
url('HelveticaNeueLTPro-Lt.woff2') format('woff2'); | |
font-weight: 100; | |
font-style: normal; |
OlderNewer