CSS is awesome

by wittnl

HTML

<style></style>
  <script type="text/javascript">
      var rules = [
              '@keyframes fade { 0% { opacity: 0; } 50% { opacity: 1 } 100% { opacity: 0 } }',
              'body:before { content: "CSS IS AWESOME"; animation: fade 5s infinite } '
      ];
      rules.map(function(rule, i) { document.styleSheets[0].insertRule(rule, i)})
  </script>