Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.90 KB | None | 0 0
  1. body {
  2.     background-color: #8B008B;
  3.     color: #FFD700;
  4. }
  5.  
  6. .other-text-color {
  7.     color: #7FFF00;
  8.     font-size: 150%;
  9. }
  10.  
  11. .dbl-undrscr {
  12.     border-bottom: solid;
  13. }
  14.  
  15. h1 {
  16.     text-align: center;
  17. }
  18.  
  19. .td-text {
  20.     vertical-align: top;
  21. }
  22.  
  23. a {
  24.     color: #FFD700;
  25.     text-decoration: none;
  26. }
  27.  
  28. .td-img {
  29.     vertical-align: top;
  30. }
  31.  
  32. .blink {
  33.  
  34.     animation:1s blinker linear infinite;
  35.     -webkit-animation:1s blinker linear infinite;
  36.     -moz-animation:1s blinker linear infinite;
  37.  
  38.      /*color: red;*/
  39.     }
  40.  
  41.     @-moz-keyframes blinker {  
  42.      0% { opacity: 1.0; }
  43.      50% { opacity: 0.0; }
  44.      100% { opacity: 1.0; }
  45.      }
  46.  
  47.     @-webkit-keyframes blinker {  
  48.      0% { opacity: 1.0; }
  49.      50% { opacity: 0.0; }
  50.      100% { opacity: 1.0; }
  51.      }
  52.  
  53.     @keyframes blinker {  
  54.      0% { opacity: 1.0; }
  55.      50% { opacity: 0.0; }
  56.      100% { opacity: 1.0; }
  57.      }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement