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
$('html, body').stop().animate({ | |
scrollTop: 0 | |
}, 1000); |
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
.spacer-h-1rem{height:1rem} | |
.spacer-h-2rem{height:2rem} | |
.spacer-h-3rem{height:3rem} | |
.spacer-h-4rem{height:4rem} | |
.spacer-h-5rem{height:5rem} | |
.spacer-h-6rem{height:6rem} | |
.spacer-h-7rem{height:7rem} | |
.spacer-h-8rem{height:8rem} | |
.spacer-h-9rem{height:9rem} | |
.spacer-h-10rem{height:10rem} |
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
dist/ | |
src/components/ | |
node_modules/ | |
# Created by https://www.gitignore.io/api/linux,macos,windows,webstorm,sublimetext,visualstudio,visualstudiocode | |
### Linux ### | |
*~ |
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
.fs-0-25{font-size:0.25rem!important} | |
.fs-0-5{font-size:0.5rem!important} | |
.fs-0-75{font-size:0.75rem!important} | |
.fs-1{font-size:1rem!important} | |
.fs-1-25{font-size:1.25rem!important} | |
.fs-1-5{font-size:1.5rem!important} | |
.fs-1-75{font-size:1.75rem!important} | |
.fs-2{font-size:2rem!important} | |
.fs-2-25{font-size:2.25rem!important} | |
.fs-2-5{font-size:2.5rem!important} |
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
.faux-italic{transform:matrix(1,0,-0.25,1,0,0)} |
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
let objs = [ | |
{'id': '1', 'firstName': 'Alfred', 'lastName': 'Schmidt'}, | |
{'id': '2', 'firstName': 'Howard', 'lastName': 'Snyder'}, | |
{'id': '3', 'firstName': 'Yoshi', 'lastName': 'Latimer'} | |
]; | |
//optional | |
let getThis = [ | |
'id', | |
'firstName'//, |
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
function jsonToArray(json){ | |
if( json.constructor == {}.constructor ){ | |
return [ | |
Object.keys(json), | |
Object.values(json) | |
]; | |
}; | |
}; |
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
https://www.w3schools.com/html/html_symbols.asp | |
© | |
® | |
™ | |
↔ | |
↕ | |
⁰ | |
¹ |
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
/* bs-sizing.css v1 */ | |
.w-1{width:1%!important} | |
.w-2{width:2%!important} | |
.w-3{width:3%!important} | |
.w-4{width:4%!important} | |
.w-5{width:5%!important} | |
.w-6{width:6%!important} | |
.w-7{width:7%!important} | |
.w-8{width:8%!important} | |
.w-9{width:9%!important} |
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
/* literals.css v1.2 */ | |
.background-none{background:none} | |
.background-none-important{background:none!important} | |
.cursor-pointer{cursor:pointer} | |
.cursor-pointer-important{cursor:pointer!important} | |
.cursor-default{cursor:default} | |
.cursor-default-important{cursor:default!important} |