kilya

basic.css

May 25th, 2019
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.59 KB | None | 0 0
  1. * {
  2.     margin: 0;
  3.     padding: 0;
  4.     box-sizing: border-box;
  5. }
  6.  
  7. body {
  8.     background-color: #ffeb3b;
  9.     color: white;
  10.     font-size: xx-large;
  11.     text-align: center;
  12.     font-family: fantasy;
  13. }
  14.  
  15. .container div:nth-of-type(1) {
  16.     background-color: #00BCD4;
  17. }
  18.  
  19. .container div:nth-of-type(2) {
  20.     background-color: #FF5722;
  21. }
  22.  
  23. .container div:nth-of-type(3) {
  24.     background-color: #CDDC39;
  25. }
  26.  
  27. .container div:nth-of-type(4) {
  28.     background-color: #9E9E9E;
  29. }
  30.  
  31. .container div:nth-of-type(5) {
  32.     background-color: #607D8B;
  33. }
  34.  
  35. .container div:nth-of-type(6) {
  36.     background-color: #FFC107;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment