Advertisement
Rasmustof

Untitled

Jul 5th, 2020
1,864
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.30 KB | None | 0 0
  1. body{
  2.     overflow: hidden;
  3.    
  4.     background:rgb(150,150,150);
  5.  
  6.     /*
  7.     animation-name: bodyanimation;
  8.     animation-duration: 10s;
  9.     animation-iteration-count: infinite;
  10.     animation-timing-function: linear;
  11.     */
  12.    
  13. }
  14.  
  15. h1{
  16.     background-color:   rgba(0,0,0,0.5);
  17.     padding: 1rem;
  18.     color: white;
  19.     border-radius: 20px;
  20. }
  21. a{
  22.     text-decoration: none;
  23.     color: white;
  24. }
  25. @keyframes bodyanimation {
  26.     0%   {
  27.         transform: rotate(0deg);
  28.         }
  29.     50%{
  30.         transform: rotate(180deg);
  31.         }
  32.     100%  {
  33.         transform: rotate(360deg);
  34.         }      
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement