12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- 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-top: 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 2em;
- color: #fff;
- }
|