addons.scss
9 years ago
blank-slate.scss
8 years ago
buttons.scss
9 years ago
dashboard.scss
10 years ago
donors.scss
8 years ago
fonts.scss
9 years ago
forms.scss
8 years ago
give-admin.scss
8 years ago
grids.scss
8 years ago
importer.scss
8 years ago
logs.scss
10 years ago
payment-history.scss
8 years ago
reports.scss
8 years ago
settings.scss
8 years ago
shortcodes.scss
9 years ago
system-info.scss
8 years ago
updates.scss
8 years ago
util.scss
8 years ago
welcome.scss
9 years ago
addons.scss
82 lines
| 1 | /** |
| 2 | * Give Add-ons SCSS |
| 3 | * |
| 4 | * @description Add-on Styles |
| 5 | * @package Give |
| 6 | * @subpackage SCSS/Admin |
| 7 | * @copyright Copyright (c) 2016, WordImpress |
| 8 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 9 | */ |
| 10 | |
| 11 | .type-download { |
| 12 | float: left; |
| 13 | margin: 0 1em 1em 0 !important; |
| 14 | padding: 0; |
| 15 | vertical-align: top; |
| 16 | width: 280px; |
| 17 | text-decoration: none; |
| 18 | color: inherit; |
| 19 | border: 1px solid #ddd; |
| 20 | display: block; |
| 21 | min-height: 365px; |
| 22 | overflow: hidden; |
| 23 | background: #f5f5f5; |
| 24 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), inset 0 -1px 0 rgba(0, 0, 0, .1); |
| 25 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), inset 0 -1px 0 rgba(0, 0, 0, .1); |
| 26 | -webkit-transition-property: border, background, color; |
| 27 | transition-property: border, background, color; |
| 28 | -webkit-transition-duration: .05s; |
| 29 | transition-duration: .05s; |
| 30 | -webkit-transition-timing-function: ease-in-out; |
| 31 | transition-timing-function: ease-in-out; |
| 32 | position: relative; |
| 33 | |
| 34 | &:hover { |
| 35 | border: 1px solid #d1d1d1; |
| 36 | } |
| 37 | |
| 38 | > .featured-img img { |
| 39 | border-bottom: 1px solid #ddd; |
| 40 | } |
| 41 | |
| 42 | .addon-content { |
| 43 | @include clearfix; |
| 44 | padding: 15px 20px; |
| 45 | |
| 46 | .addon-heading { |
| 47 | margin: 0 0 10px; |
| 48 | a { |
| 49 | outline: none; |
| 50 | text-decoration: none; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | } |
| 55 | |
| 56 | .addon-footer-wrap { |
| 57 | border-top: 1px solid #ddd; |
| 58 | position: absolute; |
| 59 | bottom: 2px; |
| 60 | left: 0; |
| 61 | width: 100%; |
| 62 | background-color: #FFF; |
| 63 | padding: 15px 20px; |
| 64 | } |
| 65 | |
| 66 | } |
| 67 | |
| 68 | .give-view-addons-all, .type-download { |
| 69 | |
| 70 | span.dashicons { |
| 71 | width: 16px; |
| 72 | height: 16px; |
| 73 | font-size: 14px; |
| 74 | margin: 6px 0 0 0; |
| 75 | } |
| 76 | |
| 77 | } |
| 78 | |
| 79 | .give-view-addons-all span.dashicons { |
| 80 | margin-left: 3px; |
| 81 | } |
| 82 |