blob: d0c1e8067bb0ed017d546d8d628e1698a369f9a4 [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 {
Iftekharul Islamc0161392017-06-14 15:46:15 -05006 color: $lightbg__grey;
Michael Daviscb8bb192017-02-09 15:45:13 -06007}
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;
Iftekharul Islam4390b022017-06-05 09:44:50 -050037 border: 0px;
Michael Daviscb8bb192017-02-09 15:45:13 -060038 margin: 0;
39 &:hover {
40 color: $lightbg__accent;
41 background: transparent;
42 }
43}
44
Michael Davis0f03ad12017-02-27 16:54:18 -060045.fixed {
46 position:fixed;
47 top:130px;
48 z-index:200;
49}
50
Michael Davisaeedf9e2017-04-06 14:35:56 -050051.bold {
52 font-weight: 700;
53}
54
Michael Daviscb8bb192017-02-09 15:45:13 -060055.no-margin {
Michael Davis51946552017-05-01 10:30:38 -050056 margin: 0 !important;
Michael Daviscb8bb192017-02-09 15:45:13 -060057}
58
Michael Davis19475752017-02-23 18:30:23 -060059.no-padding {
Michael Davis51946552017-05-01 10:30:38 -050060 padding:0 !important;
Michael Davis19475752017-02-23 18:30:23 -060061}
62
Michael Daviscb8bb192017-02-09 15:45:13 -060063.no-bottom-margin {
Michael Davis51946552017-05-01 10:30:38 -050064 margin-bottom: 0 !important;
Michael Daviscb8bb192017-02-09 15:45:13 -060065}
66
67.no-top-margin {
Michael Davis51946552017-05-01 10:30:38 -050068 margin-top: 0 !important;
Michael Davis19475752017-02-23 18:30:23 -060069}
70
Michael Davis5a752b22017-03-09 09:41:08 -060071.btm-border-grey {
72 border-bottom: 1px solid $lightbg__grey;
73}
74
Michael Davis19475752017-02-23 18:30:23 -060075.transitionAll {
76 transition: all .5s ease;
Michael Davis9486f542017-05-30 15:35:31 -050077}
78
79//Uploading
80.uploading {
81 @include indeterminate-bar;
82 font-weight: 700;
83 padding: .2em 6em .2em 1em;
84 margin: .8em 0;
85 width: 100%;
86}
87
88.accessible-text {
89 height: 0;
90 width: 0;
91 position: absolute;
92 overflow: hidden;
Michael Davis6dc5f182017-06-26 13:07:27 -050093}
94
95.show-scroll {
96 // Force scrollbar to always be visible in webkit browsers
97 &::-webkit-scrollbar {
98 background-color: lighten($medgrey, 5%);
99 width: 8px;
100 }
101
102 &::-webkit-scrollbar-thumb {
103 border-radius: 5px;
104 background-color: rgba(0,0,0,.5);
105 -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
106 }
Michael Daviscb8bb192017-02-09 15:45:13 -0600107}