Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. /* Color! */
  2.  
  3. p {
  4. color: white;
  5. background-color: black;
  6. }
  7.  
  8. /* Style! */
  9.  
  10. p {
  11. text-transform: uppercase;
  12. font-family: Arial;
  13. font-size: 14px;
  14. }
  15.  
  16. /* Size */
  17.  
  18. div {
  19. width: 100px;
  20. height: 100px;
  21. }
  22.  
  23. /* Motion and Animation */
  24.  
  25. div {
  26. animation: fadeInUp;
  27. animation-delay: 1s;
  28. animation-duration: 1s;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement