Advertisement
Guest User

prrrr

a guest
Dec 22nd, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. body {
  5. margin: 0;
  6. padding: 0;
  7. }
  8. .fyber-interstitial-root-container {
  9. position: fixed;
  10. top: 0;
  11. left: 0;
  12. width: 100%;
  13. height: 100%;
  14. background: black;
  15. }
  16. .fyber-interstitial-container {
  17. position: absolute;
  18. top: 50%;
  19. left: 50%;
  20. -webkit-transform: translate(-50%, -50%);
  21. -moz-transform: translate(-50%, -50%);
  22. -ms-transform: translate(-50%, -50%);
  23. -o-transform: translate(-50%, -50%);
  24. }
  25. </style>
  26.  
  27. <meta name="viewport" content="initial-scale=1.0">
  28. </head>
  29.  
  30. <body>
  31. <div class="fyber-interstitial-root-container">
  32. <div class="fyber-interstitial-container">
  33. <img src="http://s10.postimg.org/sv32j9ozt/beehappy.jpg"/>
  34. <div style="color: yellow; text-align: center">
  35. <p>Don't worry, BEE happy!</p>
  36. </div>
  37. </div>
  38. </div>
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement