|
| 1 | +@import "variables"; |
| 2 | + |
| 3 | +$laravel-white: #F2F4F6; |
| 4 | +$laravel-gray: #74787E; |
| 5 | +$laravel-gray-light: #9BA2AB; |
| 6 | +$laravel-gray-light-2: #AEAEAE; |
| 7 | +$laravel-gray-lighter: #EDEFF2; |
| 8 | +$laravel-blue: #3869D4; |
| 9 | + |
| 10 | +/* Base */ |
| 11 | +body, body *:not(html):not(style):not(br):not(tr):not(code) { |
| 12 | + font-family: Avenir, Helvetica, sans-serif; |
| 13 | + box-sizing: border-box; |
| 14 | +} |
| 15 | + |
| 16 | +body { |
| 17 | + background-color: $ogf-dark-blue; |
| 18 | + color: $laravel-gray; |
| 19 | + height: 100%; |
| 20 | + line-height: 1.4; |
| 21 | + margin: 0; |
| 22 | + width: 100% !important; |
| 23 | + -webkit-text-size-adjust: none; |
| 24 | +} |
| 25 | + |
| 26 | +p, |
| 27 | +ul, |
| 28 | +ol, |
| 29 | +blockquote { |
| 30 | + line-height: 1.4; |
| 31 | + text-align: left; |
| 32 | +} |
| 33 | + |
| 34 | +a { |
| 35 | + color: $link-color; |
| 36 | +} |
| 37 | + |
| 38 | +a img { |
| 39 | + border: none; |
| 40 | +} |
| 41 | + |
| 42 | +/* Typography */ |
| 43 | + |
| 44 | +h1 { |
| 45 | + color: $ogf-dark-blue; |
| 46 | + font-size: 19px; |
| 47 | + font-weight: bold; |
| 48 | + margin-top: 0; |
| 49 | + text-align: left; |
| 50 | +} |
| 51 | + |
| 52 | +h2 { |
| 53 | + color: $ogf-dark-blue; |
| 54 | + font-size: 16px; |
| 55 | + font-weight: bold; |
| 56 | + margin-top: 0; |
| 57 | + text-align: left; |
| 58 | +} |
| 59 | + |
| 60 | +h3 { |
| 61 | + color: $ogf-dark-blue; |
| 62 | + font-size: 14px; |
| 63 | + font-weight: bold; |
| 64 | + margin-top: 0; |
| 65 | + text-align: left; |
| 66 | +} |
| 67 | + |
| 68 | +p { |
| 69 | + color: $text-color; |
| 70 | + font-size: 16px; |
| 71 | + line-height: 1.5em; |
| 72 | + margin-top: 0; |
| 73 | + text-align: left; |
| 74 | +} |
| 75 | + |
| 76 | +p.sub { |
| 77 | + font-size: 12px; |
| 78 | +} |
| 79 | + |
| 80 | +img { |
| 81 | + max-width: 100%; |
| 82 | +} |
| 83 | + |
| 84 | +/* Layout */ |
| 85 | + |
| 86 | +.wrapper { |
| 87 | + background-color: $ogf-dark-blue; |
| 88 | + margin: 0; |
| 89 | + padding: 0; |
| 90 | + width: 100%; |
| 91 | + -premailer-cellpadding: 0; |
| 92 | + -premailer-cellspacing: 0; |
| 93 | + -premailer-width: 100%; |
| 94 | +} |
| 95 | + |
| 96 | +.content { |
| 97 | + margin: 0; |
| 98 | + padding: 0; |
| 99 | + width: 100%; |
| 100 | + -premailer-cellpadding: 0; |
| 101 | + -premailer-cellspacing: 0; |
| 102 | + -premailer-width: 100%; |
| 103 | +} |
| 104 | + |
| 105 | +/* Header */ |
| 106 | + |
| 107 | +.header { |
| 108 | + padding: 25px 0; |
| 109 | + text-align: center; |
| 110 | +} |
| 111 | + |
| 112 | +.header a { |
| 113 | + color: white; |
| 114 | + font-size: 19px; |
| 115 | + font-weight: bold; |
| 116 | + text-decoration: none; |
| 117 | +} |
| 118 | + |
| 119 | +/* Body */ |
| 120 | + |
| 121 | +.body { |
| 122 | + background-color: #FFFFFF; |
| 123 | + margin: 0; |
| 124 | + padding: 0; |
| 125 | + width: 100%; |
| 126 | + -premailer-cellpadding: 0; |
| 127 | + -premailer-cellspacing: 0; |
| 128 | + -premailer-width: 100%; |
| 129 | +} |
| 130 | + |
| 131 | +.inner-body { |
| 132 | + background-color: #FFFFFF; |
| 133 | + margin: 0 auto; |
| 134 | + padding: 0; |
| 135 | + width: 570px; |
| 136 | + -premailer-cellpadding: 0; |
| 137 | + -premailer-cellspacing: 0; |
| 138 | + -premailer-width: 570px; |
| 139 | +} |
| 140 | + |
| 141 | +/* Subcopy */ |
| 142 | + |
| 143 | +.subcopy { |
| 144 | + border-top: 1px solid $laravel-gray-lighter; |
| 145 | + margin-top: 25px; |
| 146 | + padding-top: 25px; |
| 147 | +} |
| 148 | + |
| 149 | +.subcopy p { |
| 150 | + font-size: 12px; |
| 151 | +} |
| 152 | + |
| 153 | +/* Footer */ |
| 154 | + |
| 155 | +.footer { |
| 156 | + margin: 0 auto; |
| 157 | + padding: 0; |
| 158 | + text-align: center; |
| 159 | + width: 570px; |
| 160 | + -premailer-cellpadding: 0; |
| 161 | + -premailer-cellspacing: 0; |
| 162 | + -premailer-width: 570px; |
| 163 | +} |
| 164 | + |
| 165 | +.footer p { |
| 166 | + color: $laravel-gray-light-2; |
| 167 | + font-size: 12px; |
| 168 | + text-align: center; |
| 169 | +} |
| 170 | + |
| 171 | +/* Tables */ |
| 172 | + |
| 173 | +.table table { |
| 174 | + margin: 30px auto; |
| 175 | + width: 100%; |
| 176 | + -premailer-cellpadding: 0; |
| 177 | + -premailer-cellspacing: 0; |
| 178 | + -premailer-width: 100%; |
| 179 | +} |
| 180 | + |
| 181 | +.table th { |
| 182 | + border-bottom: 1px solid $laravel-gray-lighter; |
| 183 | + padding-bottom: 8px; |
| 184 | +} |
| 185 | + |
| 186 | +.table td { |
| 187 | + color: $laravel-gray; |
| 188 | + font-size: 15px; |
| 189 | + line-height: 18px; |
| 190 | + padding: 10px 0; |
| 191 | +} |
| 192 | + |
| 193 | +.content-cell { |
| 194 | + padding: 35px; |
| 195 | +} |
| 196 | + |
| 197 | +/* Buttons */ |
| 198 | + |
| 199 | +.action { |
| 200 | + margin: 30px auto; |
| 201 | + padding: 0; |
| 202 | + text-align: center; |
| 203 | + width: 100%; |
| 204 | + -premailer-cellpadding: 0; |
| 205 | + -premailer-cellspacing: 0; |
| 206 | + -premailer-width: 100%; |
| 207 | +} |
| 208 | + |
| 209 | +.button { |
| 210 | + border-radius: $btn-border-radius-base; |
| 211 | + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16); |
| 212 | + color: $btn-default-color; |
| 213 | + display: inline-block; |
| 214 | + text-decoration: none; |
| 215 | + -webkit-text-size-adjust: none; |
| 216 | +} |
| 217 | + |
| 218 | +.button-blue { |
| 219 | + color: $btn-primary-color; |
| 220 | + background-color: $btn-primary-bg; |
| 221 | + border-top: 10px solid $btn-primary-bg; |
| 222 | + border-right: 18px solid $btn-primary-bg; |
| 223 | + border-bottom: 10px solid $btn-primary-bg; |
| 224 | + border-left: 18px solid $btn-primary-bg; |
| 225 | +} |
| 226 | + |
| 227 | +.button-green { |
| 228 | + color: $btn-success-color; |
| 229 | + background-color: $btn-success-bg; |
| 230 | + border-top: 10px solid $btn-success-bg; |
| 231 | + border-right: 18px solid $btn-success-bg; |
| 232 | + border-bottom: 10px solid $btn-success-bg; |
| 233 | + border-left: 18px solid $btn-success-bg; |
| 234 | +} |
| 235 | + |
| 236 | +.button-red { |
| 237 | + color: $btn-danger-color; |
| 238 | + background-color: $btn-danger-bg; |
| 239 | + border-top: 10px solid $btn-danger-bg; |
| 240 | + border-right: 18px solid $btn-danger-bg; |
| 241 | + border-bottom: 10px solid $btn-danger-bg; |
| 242 | + border-left: 18px solid $btn-danger-bg; |
| 243 | +} |
| 244 | + |
| 245 | +/* Panels */ |
| 246 | + |
| 247 | +.panel { |
| 248 | + margin: 0 0 21px; |
| 249 | +} |
| 250 | + |
| 251 | +.panel-content { |
| 252 | + background-color: $laravel-gray-lighter; |
| 253 | + padding: 16px; |
| 254 | +} |
| 255 | + |
| 256 | +.panel-item { |
| 257 | + padding: 0; |
| 258 | +} |
| 259 | + |
| 260 | +.panel-item p:last-of-type { |
| 261 | + margin-bottom: 0; |
| 262 | + padding-bottom: 0; |
| 263 | +} |
| 264 | + |
| 265 | +/* Promotions */ |
| 266 | + |
| 267 | +.promotion { |
| 268 | + background-color: #FFFFFF; |
| 269 | + border: 2px dashed $laravel-gray-light; |
| 270 | + margin: 0; |
| 271 | + margin-bottom: 25px; |
| 272 | + margin-top: 25px; |
| 273 | + padding: 24px; |
| 274 | + width: 100%; |
| 275 | + -premailer-cellpadding: 0; |
| 276 | + -premailer-cellspacing: 0; |
| 277 | + -premailer-width: 100%; |
| 278 | +} |
| 279 | + |
| 280 | +.promotion h1 { |
| 281 | + text-align: center; |
| 282 | +} |
| 283 | + |
| 284 | +.promotion p { |
| 285 | + font-size: 15px; |
| 286 | + text-align: center; |
| 287 | +} |
0 commit comments