|
| 1 | +/* Globals */ |
| 2 | + |
| 3 | +body { |
| 4 | + font-family: 'Roboto', sans-serif; |
| 5 | + font-size: 14px; |
| 6 | + padding: 0; |
| 7 | + margin: 0; |
| 8 | + background-color: #f8f8f8; |
| 9 | +} |
| 10 | + |
| 11 | +h1, .h1, |
| 12 | +h2, .h2, |
| 13 | +h3, .h3, |
| 14 | +h4, .h4, |
| 15 | +h5, .h5, |
| 16 | +h6, .h6 { |
| 17 | + font-family: 'PT Sans Narrow', sans-serif; |
| 18 | + font-weight: normal; |
| 19 | + color: #111; |
| 20 | +} |
| 21 | + |
| 22 | +h3 { |
| 23 | + font-size: 1.45em; |
| 24 | +} |
| 25 | + |
| 26 | +/* Links */ |
| 27 | + |
| 28 | +a, a:visited, a:active { |
| 29 | + color: #48d; |
| 30 | + text-decoration: none; |
| 31 | +} |
| 32 | + |
| 33 | +a:hover { |
| 34 | + color: #f84; |
| 35 | + text-decoration: none; |
| 36 | +} |
| 37 | + |
| 38 | +h1 a:link, h1 a:visited, |
| 39 | +h2 a:link, h2 a:visited, |
| 40 | +h3 a:link, h3 a:visited { |
| 41 | + color: #111; |
| 42 | +} |
| 43 | + |
| 44 | +h1 a:hover, |
| 45 | +h2 a:hover, |
| 46 | +h3 a:hover { |
| 47 | + color: #48d; |
| 48 | +} |
| 49 | + |
| 50 | +/* Container width */ |
| 51 | + |
| 52 | +.container { |
| 53 | + max-width: 900px; |
| 54 | +} |
| 55 | + |
| 56 | +@media (min-width: 1200px) { |
| 57 | + .container { |
| 58 | + width: 900px; |
| 59 | + } |
| 60 | +} |
| 61 | + |
| 62 | +/* Masthead */ |
| 63 | + |
| 64 | +.site-masthead { |
| 65 | + background-color: #fff; |
| 66 | + box-shadow: 1px 1px 1px rgba(0,0,0,0.1); |
| 67 | + line-height: 20px; |
| 68 | +} |
| 69 | + |
| 70 | +.site-masthead .container { |
| 71 | + position: relative; |
| 72 | +} |
| 73 | + |
| 74 | +/* Nav links */ |
| 75 | + |
| 76 | +.site-nav { |
| 77 | + text-align: center; |
| 78 | + font-family: 'PT Sans Narrow', sans-serif; |
| 79 | + font-size: 19.6px; |
| 80 | + color: #111; |
| 81 | +} |
| 82 | + |
| 83 | +@media only screen and (min-width:700px) { |
| 84 | + .site-nav { |
| 85 | + position: absolute; |
| 86 | + bottom: 0; |
| 87 | + right: 0; |
| 88 | + } |
| 89 | +} |
| 90 | + |
| 91 | +ul.menu { |
| 92 | + padding-left: 0; |
| 93 | + padding-right: 0; |
| 94 | +} |
| 95 | + |
| 96 | +li.menu-item { |
| 97 | + position: relative; |
| 98 | + display: inline-block; |
| 99 | +} |
| 100 | + |
| 101 | +.menu-item a:link, |
| 102 | +.menu-item a:visited { |
| 103 | + padding: 13px; |
| 104 | + box-sizing: border-box; |
| 105 | + color: #111; |
| 106 | +} |
| 107 | + |
| 108 | +.menu-item a:hover { |
| 109 | + color: #48d; |
| 110 | + text-decoration: none; |
| 111 | + box-shadow: inset 0px -2px #48d; |
| 112 | + box-sizing: border-box; |
| 113 | + padding: 13px; |
| 114 | +} |
| 115 | + |
| 116 | +.current-menu-item a:link, |
| 117 | +.current-menu-item a:visited { |
| 118 | + color: #f84; |
| 119 | + box-shadow: inset 0 -2px #f84; |
| 120 | + box-sizing: border-box; |
| 121 | + padding: 13px; |
| 122 | +} |
| 123 | + |
| 124 | +/* Title and description */ |
| 125 | + |
| 126 | +.site-header { |
| 127 | + display: inline-block; |
| 128 | +} |
| 129 | + |
| 130 | +.site-logo { |
| 131 | + vertical-align: middle; |
| 132 | + margin-bottom: 8px; |
| 133 | + margin-right: 1px; |
| 134 | +} |
| 135 | + |
| 136 | +.site-title { |
| 137 | + margin-top: 20px; |
| 138 | + margin-bottom: 7px; |
| 139 | + color: #111; |
| 140 | + font-size: 40px; |
| 141 | + font-weight: normal; |
| 142 | + letter-spacing: 2px; |
| 143 | +} |
| 144 | + |
| 145 | +.site-subtitle { |
| 146 | + display: block; |
| 147 | + font-size: 20px; |
| 148 | + font-weight: normal; |
| 149 | + color: #888; |
| 150 | + letter-spacing: 0px; |
| 151 | +} |
| 152 | + |
| 153 | +@media only screen and (min-width:440px) { |
| 154 | + .site-subtitle { |
| 155 | + display: inline; |
| 156 | + } |
| 157 | +} |
| 158 | + |
| 159 | +/* Footer */ |
| 160 | + |
| 161 | +.site-footer { |
| 162 | + padding: 40px 0; |
| 163 | + color: #999; |
| 164 | + text-align: center; |
| 165 | + font-size: 12px; |
| 166 | +} |
| 167 | + |
| 168 | +/* Image gallery */ |
| 169 | + |
| 170 | +.pswp__counter, |
| 171 | +.pswp__button--share, |
| 172 | +.pswp__button--fs, |
| 173 | +.pswp__button--zoom { |
| 174 | + display: none !important; |
| 175 | +} |
0 commit comments