blob: 3d5a8cefdbe07d72b2db5ee204a734a64ac630dc [file] [log] [blame]
Michael Daviscb8bb192017-02-09 15:45:13 -06001.inline {
2 display: inline-block;
Michael Daviscb8bb192017-02-09 15:45:13 -06003}
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 Davis19475752017-02-23 18:30:23 -060016 color: $error-color;
Michael Daviscb8bb192017-02-09 15:45:13 -060017}
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
45.no-margin {
46 margin: 0px !important;
47}
48
Michael Davis19475752017-02-23 18:30:23 -060049.no-padding {
50 padding:0px !important;
51}
52
Michael Daviscb8bb192017-02-09 15:45:13 -060053.no-bottom-margin {
54 margin-bottom: 0px !important;
55}
56
57.no-top-margin {
58 margin-top: 0px !important;
Michael Davis19475752017-02-23 18:30:23 -060059}
60
61.transitionAll {
62 transition: all .5s ease;
Michael Daviscb8bb192017-02-09 15:45:13 -060063}