OLD | NEW |
(Empty) | |
| 1 /*! |
| 2 * This file is part of website-defaults |
| 3 * Copyright (C) 2016 Eyeo GmbH |
| 4 * |
| 5 * website-defaults is free software: you can redistribute it and/or |
| 6 * modify it under the terms of the GNU General Public License as published by |
| 7 * the Free Software Foundation, either version 3 of the License, or |
| 8 * (at your option) any later version. |
| 9 * |
| 10 * website-defaults is distributed in the hope that it will be useful, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 * GNU General Public License for more details. |
| 14 * |
| 15 * You should have received a copy of the GNU General Public License |
| 16 * along with website-defaults. If not, see <http://www.gnu.org/licenses/>. |
| 17 */ |
| 18 |
| 19 /******************************************************************************* |
| 20 * Content styles |
| 21 ******************************************************************************* |
| 22 * 1. Document |
| 23 * 2. Headings |
| 24 * 3. Body content |
| 25 ******************************************************************************/ |
| 26 |
| 27 /* Document |
| 28 ******************************************************************************/ |
| 29 |
| 30 p, |
| 31 ol, |
| 32 ul, |
| 33 dl, |
| 34 pre, |
| 35 blockquote |
| 36 { |
| 37 /* Set consistent margins (opinionated) */ |
| 38 margin: 1em 0em; |
| 39 } |
| 40 |
| 41 /* Headings |
| 42 ******************************************************************************/ |
| 43 |
| 44 h1, |
| 45 h2, |
| 46 h3, |
| 47 h4, |
| 48 h5, |
| 49 h6 |
| 50 { |
| 51 /* Margin on top **only** (opinionated) */ |
| 52 margin: 2em 0em 0em 0em; |
| 53 } |
| 54 |
| 55 h1 |
| 56 { |
| 57 font-size: 2em; |
| 58 } |
| 59 |
| 60 h2 |
| 61 { |
| 62 font-size: 1.5em; |
| 63 } |
| 64 |
| 65 h3 |
| 66 { |
| 67 font-size: 1.25em; |
| 68 } |
| 69 |
| 70 h4 |
| 71 { |
| 72 font-size: 1em; |
| 73 } |
| 74 |
| 75 h5 |
| 76 { |
| 77 font-size: 0.8em; |
| 78 } |
| 79 |
| 80 h6 |
| 81 { |
| 82 font-size: 0.7em; |
| 83 } |
| 84 |
| 85 /* Body content |
| 86 ******************************************************************************/ |
| 87 |
| 88 abbr |
| 89 { |
| 90 text-decoration: underline; |
| 91 cursor: help; |
| 92 } |
| 93 |
| 94 b, |
| 95 strong |
| 96 { |
| 97 font-weight: $bold-weight; |
| 98 } |
| 99 |
| 100 small |
| 101 { |
| 102 font-size: $small-font; |
| 103 } |
| 104 |
| 105 sup |
| 106 { |
| 107 position: relative; |
| 108 font-size: 75%; |
| 109 vertical-align: super; |
| 110 } |
| 111 |
| 112 a, |
| 113 a:visited |
| 114 { |
| 115 color: $accent; |
| 116 /* Remove the gray background on active links in IE 10. */ |
| 117 background-color: transparent; |
| 118 text-decoration: none; |
| 119 /* Set default pointer regardless of href (opinionated) */ |
| 120 cursor: pointer; |
| 121 } |
| 122 |
| 123 a:hover, |
| 124 a:active, |
| 125 a:focus |
| 126 { |
| 127 text-decoration: underline; |
| 128 } |
| 129 |
| 130 img |
| 131 { |
| 132 /* Make fixed width images responsive */ |
| 133 max-width: 100%; |
| 134 /* Remove the border on images inside links in IE 10-. */ |
| 135 border-style: none; |
| 136 } |
| 137 |
| 138 hr |
| 139 { |
| 140 border: 1px solid $secondary-light; |
| 141 } |
| 142 |
| 143 blockquote |
| 144 { |
| 145 padding-left: 1em; |
| 146 border-left: 5px solid $secondary-light; |
| 147 } |
| 148 |
| 149 [dir="rtl"] blockquote |
| 150 { |
| 151 padding-right: 1em; |
| 152 padding-left: 0em; |
| 153 border-right: 5px solid $secondary-light; |
| 154 border-left: 0px; |
| 155 } |
| 156 |
| 157 ol, |
| 158 ul |
| 159 { |
| 160 padding-left: 1.5em; |
| 161 } |
| 162 |
| 163 [dir="rtl"] ol, |
| 164 [dir="rtl"] ul |
| 165 { |
| 166 padding-right: 2em; |
| 167 padding-left: 0em; |
| 168 } |
| 169 |
| 170 li |
| 171 { |
| 172 margin: 0.5em 0em; |
| 173 } |
| 174 |
| 175 ol ol, |
| 176 ul ul, |
| 177 ol ul, |
| 178 ul ol |
| 179 { |
| 180 /* prevent double spacing lists */ |
| 181 margin: 0em; |
| 182 } |
| 183 |
| 184 ol ol |
| 185 { |
| 186 list-style-type: lower-alpha; |
| 187 } |
| 188 |
| 189 dt |
| 190 { |
| 191 /* undo browser default (opinionated)*/ |
| 192 font-weight: $bold-weight; |
| 193 } |
| 194 |
| 195 dd |
| 196 { |
| 197 margin: 0.5em 0em 1em 0em; |
| 198 } |
OLD | NEW |