Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.94 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.  {
  29.     text-decoration: underline;
  30.  }
  31.  
  32.  table
  33.  {
  34.     border: 15px solid transparent;
  35.     border-image: url(five_leaves_border_03_hd_picture.jpg) 50 50 round;
  36.     box-shadow: 5px 5px 10px yellow, 10px 10px 20px yellow;
  37.     font-family: arial;
  38.     padding: 0.5px;
  39.  }
  40.  
  41. .a
  42. {
  43.     border: 2px solid;
  44.     border-radius: 25px;
  45.     background-color: gold;
  46.     font-family: arial;
  47.     padding-top: 0.5cm;
  48.     padding-bottom: 0.5cm;
  49.     transition: background 1s;
  50.     -webkit-transition: 1s ease;
  51.     transition: 1s ease;
  52. }
  53.  
  54. .a:hover
  55. {
  56.     background: linen;
  57.     -webkit-transform: scale(1.2);
  58.     transform: scale(1.2);
  59. }
  60.  
  61. td
  62. {
  63.     border: 2px solid;
  64.     border-radius: 25px;
  65.     background-color: aquamarine;
  66.     transition: background 1s;
  67.     -webkit-transition: 1s ease;
  68.     transition: 1s ease;
  69. }
  70.  
  71. td:hover
  72. {
  73.     background: linen;
  74.     -webkit-transform: scale(1.2);
  75.     transform: scale(1.2);
  76. }
  77.  
  78. .x
  79. {
  80.     border: 2px solid;
  81.     border-radius: 25px;
  82.     font-family: arial;
  83.     background-color: aqua;
  84.     transition: background 1s;
  85.     -webkit-transition: 1s ease;
  86.     transition: 1s ease;
  87. }
  88.  
  89. .x:hover
  90. {
  91.     background: linen;
  92.     -webkit-transform: scale(1.2);
  93.     transform: scale(1.2);
  94. }
  95.  
  96. img
  97. {
  98.     height:300px;
  99.     width:200px;
  100.     border-radius: 25px;
  101.     -webkit-transition: 1s ease;
  102.     transition: 1s ease;
  103. }
  104.  
  105. img:hover
  106. {
  107.   -webkit-transform: scale(1.2);
  108.   transform: scale(1.2);
  109. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement