_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
progress-bar.scss
44 lines
| 1 | /** |
| 2 | * Give Frontend Progress Bar SCSS |
| 3 | * |
| 4 | * @package Give |
| 5 | * @subpackage SCSS/Frontend |
| 6 | * @copyright Copyright (c) 2016, WordImpress |
| 7 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 8 | */ |
| 9 | |
| 10 | .give-goal-progress { |
| 11 | margin-bottom: 20px; |
| 12 | clear:both; |
| 13 | |
| 14 | .income { |
| 15 | font-size: 46px; |
| 16 | line-height: 48px; |
| 17 | letter-spacing: -1px; |
| 18 | color: #333; |
| 19 | } |
| 20 | |
| 21 | .raised { |
| 22 | margin-bottom: 15px; |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | .give-progress-bar { |
| 27 | height: 20px; |
| 28 | position: relative; |
| 29 | background: #EEE; |
| 30 | border-radius: 25px; |
| 31 | overflow: hidden; |
| 32 | |
| 33 | > span { |
| 34 | display: block; |
| 35 | height: 100%; |
| 36 | border-top-right-radius: 8px; |
| 37 | border-bottom-right-radius: 8px; |
| 38 | border-top-left-radius: 20px; |
| 39 | border-bottom-left-radius: 20px; |
| 40 | background-color: rgb(43, 194, 83); |
| 41 | position: relative; |
| 42 | overflow: hidden; |
| 43 | } |
| 44 | } |