| Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 1 | .inline { |
| 2 | display: inline-block; | ||||
| Michael Davis | dfad5d5 | 2017-07-20 14:53:46 -0500 | [diff] [blame] | 3 | line-height: 2; |
| Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 4 | } |
| 5 | |||||
| 6 | .disabled { | ||||
| Iftekharul Islam | c016139 | 2017-06-14 15:46:15 -0500 | [diff] [blame] | 7 | color: $lightbg__grey; |
| Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 8 | } |
| 9 | |||||
| 10 | .float-right { | ||||
| 11 | float: right; | ||||
| 12 | } | ||||
| 13 | .clear-float { | ||||
| 14 | clear: both; | ||||
| 15 | } | ||||
| 16 | .error { | ||||
| Michael Davis | dfad5d5 | 2017-07-20 14:53:46 -0500 | [diff] [blame] | 17 | color: $error; |
| Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 18 | } |
| 19 | |||||
| 20 | .hide { | ||||
| 21 | display: none; | ||||
| 22 | } | ||||
| 23 | |||||
| 24 | .show { | ||||
| 25 | display: block; | ||||
| 26 | } | ||||
| 27 | |||||
| 28 | .close { | ||||
| 29 | color: $lightbg__primary; | ||||
| 30 | font-size: 1.5em; | ||||
| 31 | padding: 1em; | ||||
| 32 | box-sizing: border-box; | ||||
| 33 | line-height: 0; | ||||
| 34 | display: flex; | ||||
| 35 | justify-content: center; | ||||
| 36 | flex-direction: column; | ||||
| 37 | background: transparent; | ||||
| Iftekharul Islam | 4390b02 | 2017-06-05 09:44:50 -0500 | [diff] [blame] | 38 | border: 0px; |
| Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 39 | margin: 0; |
| 40 | &:hover { | ||||
| 41 | color: $lightbg__accent; | ||||
| 42 | background: transparent; | ||||
| 43 | } | ||||
| 44 | } | ||||
| 45 | |||||
| 46 | .no-margin { | ||||
| Michael Davis | dfad5d5 | 2017-07-20 14:53:46 -0500 | [diff] [blame] | 47 | margin: 0px !important; |
| Michael Davis | 1947575 | 2017-02-23 18:30:23 -0600 | [diff] [blame] | 48 | } |
| 49 | |||||
| Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 50 | .no-bottom-margin { |
| Michael Davis | dfad5d5 | 2017-07-20 14:53:46 -0500 | [diff] [blame] | 51 | margin-bottom: 0px !important; |
| Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 52 | } |
| 53 | |||||
| 54 | .no-top-margin { | ||||
| Michael Davis | dfad5d5 | 2017-07-20 14:53:46 -0500 | [diff] [blame] | 55 | margin-top: 0px !important; |
| Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 56 | } |