grid-base.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. body {
  2. margin: 0;
  3. line-height: 1.375;
  4. font-family: Georgia, Times New Roman, Times, serif;
  5. }
  6. h1,h2,h3,h4,h5,h6 {
  7. font-family: Avenir Next, Avenir, Franklin Gothic, Trebuchet MS, Arial, sans-serif;
  8. margin-top: 0;
  9. }
  10. a {
  11. color: #8E3339;
  12. text-decoration: none;
  13. }
  14. a:hover,
  15. a:focus {
  16. text-decoration: underline;
  17. }
  18. /* here's our wrapper */
  19. .wrapper {
  20. width: 95%;
  21. max-width: 76em;
  22. margin: 0 auto;
  23. }
  24. /* masthead styling */
  25. .masthead {
  26. background-color: #8E3339;
  27. }
  28. .masthead h1 {
  29. margin: 0;
  30. padding: 0.5em 0;
  31. color: #fff;
  32. text-shadow: -.1em .1em 0 rgba(0,0,0,0.3);
  33. }
  34. /* navbar styling */
  35. .navbar {
  36. background-color: #5E2126;
  37. margin-bottom: 1.375em;
  38. }
  39. nav {
  40. display: block;
  41. }
  42. .navbar ul {
  43. font-family: 'Avenir Next', Avenir, Corbel, 'Franklin Gothic', 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
  44. list-style: none;
  45. padding: 0;
  46. margin: 0;
  47. background-color: #752A2F;
  48. display: flex;
  49. overflow: hidden;
  50. }
  51. .navbar li {
  52. float: left;
  53. text-transform: uppercase;
  54. text-align: center;
  55. box-sizing: border-box;
  56. flex: 1 1 auto;
  57. border-left: 1px solid #8E3339;
  58. }
  59. .navbar li:first-child {
  60. border-left: 0;
  61. }
  62. .navbar li a {
  63. display: block;
  64. text-decoration: none;
  65. line-height: 1.75em;
  66. padding: 1em 2em;
  67. color: #fff;
  68. }