Python253

7x_418_Source (04202018)

Apr 20th, 2018
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.87 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1">
  5. <title>?v=tmpc9M81Xb4</title>
  6. <style>
  7. @import url(https://fonts.googleapis.com/css?family=Gilda+Display);
  8.  
  9. html {
  10.   background: radial-gradient(#000, #111);
  11.   color: white;
  12.   overflow: hidden;
  13.   height: 100%;
  14.   user-select: none;
  15. }
  16.  
  17. .static {
  18.   width: 100%;
  19.   height: 100%;
  20.   position: relative;
  21.   margin: 0;
  22.   padding: 0;
  23.   top: -100px;
  24.   opacity: 0.05;
  25.   z-index: 230;
  26.   user-select: none;
  27.   user-drag: none;
  28. }
  29.  
  30. .error {
  31.   text-align: center;
  32.   font-family: 'Gilda Display', serif;
  33.   font-size: 95px;
  34.   font-style: italic;
  35.   text-align: center;
  36.   width: 100px;
  37.   height: 60px;
  38.   line-height: 60px;
  39.   margin: auto;
  40.   position: absolute;
  41.   top: 0;
  42.   bottom: 0;
  43.   left: -60px;
  44.   right: 0;
  45.   animation: noise 2s linear infinite;
  46.   overflow: default;
  47. }
  48.  
  49. .error:after {
  50.   content: '223';
  51.   font-family: 'Gilda Display', serif;
  52.   font-size: 100px;
  53.   font-style: italic;
  54.   text-align: center;
  55.   width: 150px;
  56.   height: 60px;
  57.   line-height: 60px;
  58.   margin: auto;
  59.   position: absolute;
  60.   top: 0;
  61.   bottom: 0;
  62.   left: 0;
  63.   right: 0;
  64.   opacity: 0;
  65.   color: blue;
  66.   animation: noise-1 .2s linear infinite;
  67. }
  68.  
  69. .info {
  70.   text-align: center;
  71.   font-family: 'Gilda Display', serif;
  72.   font-size: 15px;
  73.   font-style: italic;
  74.   text-align: center;
  75.   width: 200px;
  76.   height: 60px;
  77.   line-height: 60px;
  78.   margin: auto;
  79.   position: absolute;
  80.   top: 140px;
  81.   bottom: 0;
  82.   left: 0;
  83.   right: 0;
  84.   animation: noise-3 1s linear infinite;
  85. }
  86.  
  87. .error:before {
  88.   content: '18';
  89.   font-family: 'Gilda Display', serif;
  90.   font-size: 100px;
  91.   font-style: italic;
  92.   text-align: center;
  93.   width: 100px;
  94.   height: 60px;
  95.   line-height: 60px;
  96.   margin: auto;
  97.   position: absolute;
  98.   top: 0;
  99.   bottom: 0;
  100.   left: 0;
  101.   right: 0;
  102.   opacity: 0;
  103.   color: red;
  104.   animation: noise-2 .2s linear infinite;
  105. }
  106.  
  107. @keyframes noise-1 {
  108.   0%, 20%, 40%, 60%, 70%, 90% {opacity: 0;}
  109.   10% {opacity: .1;}
  110.   50% {opacity: .5; left: -6px;}
  111.   80% {opacity: .3;}
  112.   100% {opacity: .6; left: 2px;}
  113. }
  114.  
  115. @keyframes noise-2 {
  116.   0%, 20%, 40%, 60%, 70%, 90% {opacity: 0;}
  117.   10% {opacity: .1;}
  118.   50% {opacity: .5; left: 6px;}
  119.   80% {opacity: .3;}
  120.   100% {opacity: .6; left: -2px;}
  121. }
  122.  
  123. @keyframes noise {
  124.   0%, 3%, 5%, 42%, 44%, 100% {opacity: 1; transform: scaleY(1);}  
  125.   4.3% {opacity: 1; transform: scaleY(1.7);}
  126.   43% {opacity: 1; transform: scaleX(1.5);}
  127. }
  128.  
  129. @keyframes noise-3 {
  130.   0%,3%,5%,42%,44%,100% {opacity: 1; transform: scaleY(1);}
  131.   4.3% {opacity: 1; transform: scaleY(4);}
  132.   43% {opacity: 1; transform: scaleX(10) rotate(60deg);}
  133. }
  134. }
  135. </style>
  136. </head>
  137. <body>
  138.  
  139. <div class="error">418</div>
  140. <br /><br />
  141. <span class="info">I'm a teapot.</span>
  142. <img src="http://images2.layoutsparks.com/1/160030/too-much-tv-static.gif" class="static" />
  143.  
  144. </body>
  145. </html>
Add Comment
Please, Sign In to add comment