| Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 1 | .inline { |
| 2 | display: inline-block; | ||||
| Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 3 | } |
| 4 | |||||
| 5 | .disabled { | ||||
| 6 | color: $lightbg__grey; | ||||
| 7 | } | ||||
| 8 | |||||
| 9 | .float-right { | ||||
| 10 | float: right; | ||||
| 11 | } | ||||
| 12 | .clear-float { | ||||
| 13 | clear: both; | ||||
| 14 | } | ||||
| 15 | .error { | ||||
| Michael Davis | 1947575 | 2017-02-23 18:30:23 -0600 | [diff] [blame] | 16 | color: $error-color; |
| Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 17 | } |
| 18 | |||||
| 19 | .hide { | ||||
| 20 | display: none; | ||||
| 21 | } | ||||
| 22 | |||||
| 23 | .show { | ||||
| 24 | display: block; | ||||
| 25 | } | ||||
| 26 | |||||
| 27 | .close { | ||||
| 28 | color: $lightbg__primary; | ||||
| 29 | font-size: 1.5em; | ||||
| 30 | padding: 1em; | ||||
| 31 | box-sizing: border-box; | ||||
| 32 | line-height: 0; | ||||
| 33 | display: flex; | ||||
| 34 | justify-content: center; | ||||
| 35 | flex-direction: column; | ||||
| 36 | background: transparent; | ||||
| 37 | border: 0px; | ||||
| 38 | margin: 0; | ||||
| 39 | &:hover { | ||||
| 40 | color: $lightbg__accent; | ||||
| 41 | background: transparent; | ||||
| 42 | } | ||||
| 43 | } | ||||
| 44 | |||||
| Michael Davis | 0f03ad1 | 2017-02-27 16:54:18 -0600 | [diff] [blame] | 45 | .fixed { |
| 46 | position:fixed; | ||||
| 47 | top:130px; | ||||
| 48 | z-index:200; | ||||
| 49 | } | ||||
| 50 | |||||
| Michael Davis | aeedf9e | 2017-04-06 14:35:56 -0500 | [diff] [blame^] | 51 | .bold { |
| 52 | font-weight: 700; | ||||
| 53 | } | ||||
| 54 | |||||
| Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 55 | .no-margin { |
| 56 | margin: 0px !important; | ||||
| 57 | } | ||||
| 58 | |||||
| Michael Davis | 1947575 | 2017-02-23 18:30:23 -0600 | [diff] [blame] | 59 | .no-padding { |
| 60 | padding:0px !important; | ||||
| 61 | } | ||||
| 62 | |||||
| Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 63 | .no-bottom-margin { |
| 64 | margin-bottom: 0px !important; | ||||
| 65 | } | ||||
| 66 | |||||
| 67 | .no-top-margin { | ||||
| 68 | margin-top: 0px !important; | ||||
| Michael Davis | 1947575 | 2017-02-23 18:30:23 -0600 | [diff] [blame] | 69 | } |
| 70 | |||||
| Michael Davis | 5a752b2 | 2017-03-09 09:41:08 -0600 | [diff] [blame] | 71 | .btm-border-grey { |
| 72 | border-bottom: 1px solid $lightbg__grey; | ||||
| 73 | } | ||||
| 74 | |||||
| Michael Davis | 1947575 | 2017-02-23 18:30:23 -0600 | [diff] [blame] | 75 | .transitionAll { |
| 76 | transition: all .5s ease; | ||||
| Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 77 | } |