Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. font-family: sans-serif;
  6. }
  7. body{
  8. height: 100vh;
  9. }
  10. table,td,th{
  11. border:1px solid black;
  12.  
  13. }
  14. table{
  15. width:90%;
  16. margin: 0 auto;
  17.  
  18. }
  19. h1{
  20. text-align: center;
  21.  
  22. }
  23. .nounderline{
  24. text-decoration: none;
  25. }
  26. .szary{
  27. color:grey;
  28. }
  29. th{
  30. background-color: chartreuse;
  31. }
  32. td{
  33. background-color: coral;
  34. }
  35. td:nth-child(2n){
  36. background-color: yellow;
  37.  
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement