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
.glitch{ | |
color:white; | |
font-size:100px; | |
position:relative; | |
width:400px; | |
margin:0 auto; | |
} | |
@keyframes noise-anim{ | |
$steps:20; | |
@for $i from 0 through $steps{ |
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
/** | |
* Injects the CSS into the <head> DOM node. | |
* | |
* @param {String} css CSS string to add to the <style> tag. | |
* @param {Document} doc document instance to use. | |
*/ | |
function loadStyles(css, doc) { | |
// default to the global `document` object | |
if (!doc) doc = document; |
OlderNewer