_mixins.scss
9 years ago
_variables.scss
8 years ago
alerts.scss
9 years ago
donation-history.scss
8 years ago
float-labels.scss
8 years ago
fonts.scss
9 years ago
forms.scss
8 years ago
give-frontend.scss
8 years ago
layouts.scss
10 years ago
modal.scss
8 years ago
progress-bar.scss
10 years ago
receipt.scss
9 years ago
tables.scss
10 years ago
theme-compatibility.scss
8 years ago
_variables.scss
58 lines
| 1 | /** |
| 2 | * Give CSS Variables |
| 3 | */ |
| 4 | |
| 5 | $green: #7ad03a; |
| 6 | $red: #a00; |
| 7 | $orange: #ffba00; |
| 8 | $blue: #2ea2cc; |
| 9 | $dark: #333; |
| 10 | $borders: #ccc; |
| 11 | $light-gray: #EDEDED; |
| 12 | |
| 13 | //Status |
| 14 | $status-default: #777; |
| 15 | $status-complete: $green; |
| 16 | $status-refunded: $status-default; |
| 17 | $status-subscription: #5bc0de; |
| 18 | $status-revoked: #d9534f; |
| 19 | |
| 20 | //Font sizes |
| 21 | $font-size-medium: 18px; |
| 22 | |
| 23 | $primary: #007ba4; |
| 24 | // Primary colour for buttons (alt) |
| 25 | $primarytext: desaturate(lighten($primary, 50%), 18%); |
| 26 | // Text on primary colour bg |
| 27 | |
| 28 | $secondary: desaturate(lighten($primary, 40%), 21%); |
| 29 | // Secondary buttons |
| 30 | $secondarytext: desaturate(darken($secondary, 60%), 21%); |
| 31 | // Text on secondary colour bg |
| 32 | |
| 33 | $highlight: adjust-hue($primary, 150deg); |
| 34 | // Prices, In stock labels, sales flash |
| 35 | $highlightext: desaturate(lighten($highlight, 50%), 18%); |
| 36 | // Text on highlight colour bg |
| 37 | |
| 38 | $contentbg: #fff; |
| 39 | // Content BG - Tabs (active state) |
| 40 | $subtext: #777; |
| 41 | // small, breadcrumbs etc |
| 42 | |
| 43 | $float-labels: ( |
| 44 | base-height : 30px, |
| 45 | border-radius : 0, |
| 46 | margin-bottom : 0, |
| 47 | color-background : inherit, |
| 48 | color-background-active : inherit, |
| 49 | color-background-focus : inherit, |
| 50 | color-border : #ccc, |
| 51 | color-border-active : #ccc, |
| 52 | color-border-focus : #ccc, |
| 53 | color-text : #333, |
| 54 | line-height : normal, |
| 55 | font-weight : 700, |
| 56 | parent : '[id*="give-form"]', |
| 57 | ); |
| 58 |