Alex9090

js2

Jan 29th, 2019
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. @keyframes tranzitie {
  2. from {border-color: red;}
  3. to {border-color: blue;}
  4. }
  5. #container {
  6. height: 600px;
  7. width: 600px;
  8. background-color: #800080;
  9. }
  10.  
  11. .patrat:nth-child(odd) {
  12. border: 1px solid black;
  13. background: #ffff00;
  14. }
  15. .patrat:nth-child(even) {
  16. border: 1px solid black;
  17. background: #ffa500;
  18. }
  19.  
  20. @keyframes tranzitie {
  21. from {border-color: red;}
  22. to {border-color: blue;}
  23. }
  24.  
  25. @media (max-width: 800px) {
  26. #container{
  27. width: 50%;
  28. border: 10px solid red;
  29. animation-name: tranzitie;
  30. animation-duration: 1s;
  31. animation-iteration-count: infinite;
  32. }
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment