123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- body {
- margin: 0;
- line-height: 1.375;
- font-family: Georgia, Times New Roman, Times, serif;
- }
- h1,h2,h3,h4,h5,h6 {
- font-family: Avenir Next, Avenir, Franklin Gothic, Trebuchet MS, Arial, sans-serif;
- margin: 0;
- }
- a {
- color: #8E3339;
- text-decoration: none;
- }
- a:hover,
- a:focus {
- text-decoration: underline;
- }
- /* here's our wrapper */
- .wrapper {
- width: 95%;
- max-width: 76em;
- margin: 0 auto;
- }
- /* masthead styling */
- .masthead {
- background-color: #8E3339;
- }
- .masthead h1 {
- margin: 0;
- padding: 0.5em 0;
- color: #fff;
- text-shadow: -.1em .1em 0 rgba(0,0,0,0.3);
- }
- /* navbar styling */
- .navbar {
- background-color: #5E2126;
- margin-bottom: 1.375em;
- }
- nav {
- display: block;
- }
- .navbar ul {
- font-family: 'Avenir Next', Avenir, Corbel, 'Franklin Gothic', 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
- list-style: none;
- padding: 0;
- margin: 0;
- background-color: #752A2F;
- display: flex;
- overflow: hidden;
- }
- .navbar li {
- float: left;
- text-transform: uppercase;
- text-align: center;
- box-sizing: border-box;
- flex: 1 1 auto;
- border-left: 1px solid #8E3339;
- }
- .navbar li:first-child {
- border-left: 0;
- }
- .navbar li a {
- display: block;
- text-decoration: none;
- line-height: 1.75em;
- padding: 1em .25em;
- color: #fff;
- }
- @media only screen and (min-width: 40em) {
- .navbar li a {
- padding: 1em 2em;
- }
- }
|