blob: 2886bf13ab35ecfa2fe0c5d5b53f37788d82badd [file] [log] [blame]
Michael Daviscb8bb192017-02-09 15:45:13 -06001.inline {
2 display: inline-block;
Michael Davisdfad5d52017-07-20 14:53:46 -05003 line-height: 2;
Michael Daviscb8bb192017-02-09 15:45:13 -06004}
5
6.disabled {
Iftekharul Islamc0161392017-06-14 15:46:15 -05007 color: $lightbg__grey;
Michael Daviscb8bb192017-02-09 15:45:13 -06008}
9
10.float-right {
11 float: right;
12}
13.clear-float {
14 clear: both;
15}
16.error {
Michael Davisdfad5d52017-07-20 14:53:46 -050017 color: $error;
Michael Daviscb8bb192017-02-09 15:45:13 -060018}
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 Islam4390b022017-06-05 09:44:50 -050038 border: 0px;
Michael Daviscb8bb192017-02-09 15:45:13 -060039 margin: 0;
40 &:hover {
41 color: $lightbg__accent;
42 background: transparent;
43 }
44}
45
46.no-margin {
Michael Davisdfad5d52017-07-20 14:53:46 -050047 margin: 0px !important;
Michael Davis19475752017-02-23 18:30:23 -060048}
49
Michael Daviscb8bb192017-02-09 15:45:13 -060050.no-bottom-margin {
Michael Davisdfad5d52017-07-20 14:53:46 -050051 margin-bottom: 0px !important;
Michael Daviscb8bb192017-02-09 15:45:13 -060052}
53
54.no-top-margin {
Michael Davisdfad5d52017-07-20 14:53:46 -050055 margin-top: 0px !important;
Michael Daviscb8bb192017-02-09 15:45:13 -060056}