Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 1 | .inline { |
2 | display: inline-block; | ||||
3 | line-height: 2; | ||||
4 | } | ||||
5 | |||||
6 | .disabled { | ||||
7 | color: $lightbg__grey; | ||||
8 | } | ||||
9 | |||||
10 | .float-right { | ||||
11 | float: right; | ||||
12 | } | ||||
13 | .clear-float { | ||||
14 | clear: both; | ||||
15 | } | ||||
16 | .error { | ||||
17 | color: $error; | ||||
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; | ||||
38 | border: 0px; | ||||
39 | margin: 0; | ||||
40 | &:hover { | ||||
41 | color: $lightbg__accent; | ||||
42 | background: transparent; | ||||
43 | } | ||||
44 | } | ||||
45 | |||||
46 | .no-margin { | ||||
47 | margin: 0px !important; | ||||
48 | } | ||||
49 | |||||
50 | .no-bottom-margin { | ||||
51 | margin-bottom: 0px !important; | ||||
52 | } | ||||
53 | |||||
54 | .no-top-margin { | ||||
55 | margin-top: 0px !important; | ||||
56 | } |