Advertisement
Guest User

Untitled

a guest
Dec 11th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. body{background-color:#fffff0}
  2.  
  3. h2{
  4. text-transform: capitalize;
  5. }
  6.  
  7. .author{
  8. font-variant: small-caps;
  9. }
  10.  
  11. .title{
  12. font-style: italic;
  13. }
  14.  
  15.  
  16. nav ul{
  17. display: flex;
  18. flex-flow: row wrap;
  19. justify-content: space-around;
  20. }
  21.  
  22. nav.small ul{
  23. text-align: left;
  24. display: block;
  25. }
  26.  
  27. nav li {
  28. list-style: none;
  29. display: inline-block;
  30. padding: 1em;
  31. background-color: aquamarine;
  32. margin: 0.25em 0pt 0pt 0pt;
  33. font-size: 200%;
  34. text-transform: capitalize;
  35. }
  36.  
  37. nav li:hover{
  38. background-color: cadetblue;
  39. }
  40.  
  41. nav.small li {
  42. font-size: 80%;
  43. padding: 0.333333em;
  44. }
  45.  
  46. nav.small ul li:not(:first-child) {
  47. border-left: solid black 1px;
  48. }
  49.  
  50. nav.small ul li {
  51. display: inline;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement