Skip to content

Instantly share code, notes, and snippets.

@cfinster
cfinster / my.css
Created January 21, 2015 14:42 — forked from anonymous/my.css
background: linear-gradient(358deg, #7a1860, #963cfd, #1c0636);
background-size: 600% 600%;
-webkit-animation: onScrollUp 23s ease infinite;
-moz-animation: onScrollUp 23s ease infinite;
-o-animation: onScrollUp 23s ease infinite;
animation: onScrollUp 23s ease infinite;
@-webkit-keyframes onScrollUp {
    0%{background-position:49% 0%}
    50%{background-position:52% 100%}
    100%{background-position:49% 0%}
@cfinster
cfinster / my.css
Last active August 29, 2015 14:12 — forked from anonymous/my.css
background: linear-gradient(48deg, #4f1cd0, #7200f5, #292120);
background-size: 600% 600%;
-webkit-animation: AnimationName 13s ease infinite;
-moz-animation: AnimationName 13s ease infinite;
-o-animation: AnimationName 13s ease infinite;
animation: AnimationName 13s ease infinite;
@-webkit-keyframes AnimationName {
    0%{background-position:55% 0%}
    50%{background-position:46% 100%}
    100%{background-position:55% 0%}
{
"draw_white_space": "all",
"enable_tab_scrolling": false,
"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS", "grunt/node_modules"],
"font_size": 14,
"ignored_packages":
[
"Vintage"
],
"open_files_in_new_window": false,
<script>
$(window).resize(function() {
var windowWidth = $(window).width();
$('.screen-width').text(windowWidth + 'px');
});
</script>
<div id="debug" style="position:fixed;padding:0.3em 0.6em;background:#f1f1f1;font-size:0.6em;bottom:0;left:50%;">
<span class="screen-width">0</span>
</div>
@cfinster
cfinster / 0_reuse_code.js
Created November 17, 2013 00:29
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console