Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.92 KB | None | 0 0
  1. body
  2. {
  3.     background-color: #b8ff29;
  4.     -webkit-animation: color 5s ease-in 0s infinite alternate running;
  5.     -moz-animation: color 5s linear  0s infinite alternate running;
  6.     animation: color 5s linear  0s infinite alternate running;
  7. }
  8.  
  9. @-webkit-keyframes color
  10. {
  11. 0%{background-color:#ff3e29;}
  12. 25%{background-color:#29ffed;}
  13. 50%{background-color:#30ff34;}
  14. 75%{background-color:#2989ff;}
  15. 100%{background-color:#b8ff29;}
  16. }
  17.  
  18. h3
  19. {
  20.     text-align: center;
  21.     text-decoration: none;
  22.     font-family: arial-black;
  23.     font-size: 200%;
  24.     text-shadow: 10px 5px 10px gold;
  25.  }
  26.  
  27.  h3:hover{
  28.     text-decoration: underline;
  29.  }
  30.  
  31.  table
  32.  {
  33.     border: 15px solid transparent;
  34.     border-image: url(five_leaves_border_03_hd_picture.jpg) 50 50 round;
  35.     box-shadow: 5px 5px 10px yellow, 10px 10px 20px yellow;
  36.     font-family: arial;
  37.     padding: 0.5px;
  38.  }
  39.  
  40. .a
  41. {
  42.     border: 2px solid;
  43.     border-radius: 25px;
  44.     background-color: gold;
  45.     font-family: arial;
  46.     padding-top: 0.5cm;
  47.     padding-bottom: 0.5cm;
  48.     transition: background 1s;
  49.     -webkit-transition: 1s ease;
  50.     transition: 1s ease;
  51. }
  52.  
  53. .a:hover {
  54.     background: linen;
  55.     -webkit-transform: scale(1.2);
  56.     transform: scale(1.2);
  57. }
  58.  
  59. td
  60. {
  61.     border: 2px solid;
  62.     border-radius: 25px;
  63.     background-color: aquamarine;
  64.     transition: background 1s;
  65.     -webkit-transition: 1s ease;
  66.     transition: 1s ease;
  67. }
  68.  
  69. td:hover{
  70.     background: linen;
  71.     -webkit-transform: scale(1.2);
  72.     transform: scale(1.2);
  73. }
  74.  
  75. .x
  76. {
  77.     border: 2px solid;
  78.     border-radius: 25px;
  79.     font-family: arial;
  80.     background-color: aqua;
  81.     transition: background 1s;
  82.     -webkit-transition: 1s ease;
  83.     transition: 1s ease;
  84. }
  85.  
  86. .x:hover {
  87.     background: linen;
  88.     -webkit-transform: scale(1.2);
  89.     transform: scale(1.2);
  90. }
  91.  
  92. img
  93. {
  94.     height:300px;
  95.     width:200px;
  96.     border-radius: 25px;
  97.     -webkit-transition: 1s ease;
  98.     transition: 1s ease;
  99. }
  100.  
  101. img:hover
  102. {
  103.   -webkit-transform: scale(1.2);
  104.   transform: scale(1.2);
  105. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement