Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <script>
  2. var i = 0
  3.  
  4. function sheetLoaded() {
  5. i += 1
  6. if (i === 2) document.querySelector('#stub').remove()
  7. }
  8. </script>
  9. <style type="text/css">
  10. #stub {
  11. background: #fff;
  12. height: 100%;
  13. left: 0;
  14. position: fixed;
  15. top: 0;
  16. width: 100%;
  17. z-index: 10000;
  18. }
  19. </style>
  20.  
  21. <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
  22. <link href="https://fonts.googleapis.com/css?family=Roboto:400,700&amp;subset=cyrillic" rel="stylesheet">
  23. <link href="{{ mix('css/semantic.css') }}" rel="stylesheet" onload="sheetLoaded()">
  24. <link href="{{ mix('css/auth.css') }}" rel="stylesheet" onload="sheetLoaded()">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement