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 { | ||||
Iftekharul Islam | c016139 | 2017-06-14 15:46:15 -0500 | [diff] [blame] | 6 | color: $lightbg__grey; |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 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; | ||||
Iftekharul Islam | 4390b02 | 2017-06-05 09:44:50 -0500 | [diff] [blame] | 37 | border: 0px; |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 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 { |
Michael Davis | 5194655 | 2017-05-01 10:30:38 -0500 | [diff] [blame] | 56 | margin: 0 !important; |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 57 | } |
58 | |||||
Michael Davis | 1947575 | 2017-02-23 18:30:23 -0600 | [diff] [blame] | 59 | .no-padding { |
Michael Davis | 5194655 | 2017-05-01 10:30:38 -0500 | [diff] [blame] | 60 | padding:0 !important; |
Michael Davis | 1947575 | 2017-02-23 18:30:23 -0600 | [diff] [blame] | 61 | } |
62 | |||||
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 63 | .no-bottom-margin { |
Michael Davis | 5194655 | 2017-05-01 10:30:38 -0500 | [diff] [blame] | 64 | margin-bottom: 0 !important; |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 65 | } |
66 | |||||
67 | .no-top-margin { | ||||
Michael Davis | 5194655 | 2017-05-01 10:30:38 -0500 | [diff] [blame] | 68 | margin-top: 0 !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 | 9486f54 | 2017-05-30 15:35:31 -0500 | [diff] [blame] | 77 | } |
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 Davis | 6dc5f18 | 2017-06-26 13:07:27 -0500 | [diff] [blame^] | 93 | } |
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 Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 107 | } |