Guest User

Untitled

a guest
Apr 4th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. border: none;
  5. -webkit-user-select: none;
  6. -webkit-tap-highlight-color: rgba(0,0,0,0);
  7. }
  8.  
  9. body {
  10. background-color: #000;
  11. font: 28px/1em "Helvetica";
  12. color: #FFF;
  13. overflow: hidden;
  14. }
  15.  
  16. a {
  17. color: gray;
  18. }
  19.  
  20. body {
  21. cursor: url('images/cursor.png') 32 32, auto;
  22. cursor: -webkit-image-set(
  23. url('images/cursor.png') 1x,
  24. url('images/[email protected]') 2x
  25. ) 32 32, auto;
  26. }
  27.  
  28. body:active {
  29. cursor: url('images/cursor-active.png') 32 32, auto;
  30. cursor: -webkit-image-set(
  31. url('images/cursor-active.png') 1x,
  32. url('images/[email protected]') 2x
  33. ) 32 32, auto;
  34. }
  35.  
  36. .framerAlertBackground {
  37. position: absolute; top:0px; left:0px; right:0px; bottom:0px;
  38. z-index: 1000;
  39. background-color: #fff;
  40. }
  41.  
  42. .framerAlert {
  43. font:400 14px/1.4 "Helvetica Neue", Helvetica, Arial, sans-serif;
  44. -webkit-font-smoothing:antialiased;
  45. color:#616367; text-align:center;
  46. position: absolute; top:40%; left:50%; width:260px; margin-left:-130px;
  47. }
  48. .framerAlert strong { font-weight:500; color:#000; margin-bottom:8px; display:block; }
  49. .framerAlert a { color:#28AFFA; }
  50. .framerAlert .btn {
  51. font-weight:500; text-decoration:none; line-height:1;
  52. display:inline-block; padding:6px 12px 7px 12px;
  53. border-radius:3px; margin-top:12px;
  54. background:#28AFFA; color:#fff;
  55. }
  56.  
  57. ::-webkit-scrollbar {
  58. display: none;
  59. }
  60.  
  61. @media only screen and (max-width: 320px) {
  62. #FramerRoot {
  63. -webkit-transform: scale(0.5, 0.5); rotate(.1deg);;
  64. -webkit-transform-origin: 0% 0%;
  65. }
  66. }
  67.  
  68. div[name='Content'] {
  69. overflow: hidden !important;
  70. }
  71.  
  72. #FramerRoot.scaledown {
  73. -webkit-transform: scale(0.5, 0.5); rotate(.1deg);;
  74. -webkit-transform-origin: 0% 0%;
  75. }
Advertisement
Add Comment
Please, Sign In to add comment