|
| 1 | +/*! |
| 2 | + * Strapless Display v1.0 (http://github.com/strapless/display) |
| 3 | + * Influenced by Bootstrap v4.0 (http://getbootstrap.com) |
| 4 | + * Licensed under MIT (https://github.com/strapless/display/blob/master/LICENSE) |
| 5 | + */ |
| 6 | +@media print { |
| 7 | + .d-print-none { |
| 8 | + display: none; |
| 9 | + } |
| 10 | + .d-print-block { |
| 11 | + display: block; |
| 12 | + } |
| 13 | + .d-print-flex { |
| 14 | + display: -webkit-flex; |
| 15 | + display: -ms-flexbox; |
| 16 | + display: flex; |
| 17 | + } |
| 18 | + .d-print-inline { |
| 19 | + display: inline; |
| 20 | + } |
| 21 | + .d-print-inline-flex { |
| 22 | + display: -webkit-inline-box; |
| 23 | + display: -ms-inline-flexbox; |
| 24 | + display: inline-flex; |
| 25 | + } |
| 26 | + .d-print-inline-block { |
| 27 | + display: inline-block; |
| 28 | + } |
| 29 | +} |
| 30 | + |
| 31 | +.sr-only { |
| 32 | + position: absolute; |
| 33 | + width: 1px; |
| 34 | + height: 1px; |
| 35 | + padding: 0; |
| 36 | + overflow: hidden; |
| 37 | + clip: rect(0, 0, 0, 0); |
| 38 | + white-space: nowrap; |
| 39 | + clip-path: inset(50%); |
| 40 | + border: 0; |
| 41 | +} |
| 42 | + |
| 43 | +.no-js .collapse { |
| 44 | + display: block; |
| 45 | +} |
| 46 | + |
| 47 | +.d-none, .touch .d-touch-none, .fallback .d-fallback-none, .baseline .d-baseline-none, .ios .d-ios-none, .android .d-android-none, .no-js .d-js-block, .no-js .d-js-flex, .no-js .d-js-inline, .no-js .d-js-inline-flex, .no-js .d-js-inline-block { |
| 48 | + display: none !important; |
| 49 | +} |
| 50 | + |
| 51 | +.d-block, .touch .d-touch-block, .fallback .d-fallback-block, .baseline .d-baseline-block, .ios .d-ios-block, .android .d-android-block { |
| 52 | + display: block !important; |
| 53 | +} |
| 54 | + |
| 55 | +.d-flex, .touch .d-touch-flex, .fallback .d-fallback-flex, .baseline .d-baseline-flex, .ios .d-ios-flex, .android .d-android-flex { |
| 56 | + display: flex !important; |
| 57 | +} |
| 58 | + |
| 59 | +.d-inline, .touch .d-touch-inline, .fallback .d-fallback-inline, .baseline .d-baseline-inline, .ios .d-ios-inline, .android .d-android-inline { |
| 60 | + display: inline !important; |
| 61 | +} |
| 62 | + |
| 63 | +.d-inline-flex, .touch .d-touch-inline-flex, .fallback .d-fallback-inline-flex, .baseline .d-baseline-inline-flex, .ios .d-ios-inline-flex, .android .d-android-inline-flex { |
| 64 | + display: inline-flex !important; |
| 65 | +} |
| 66 | + |
| 67 | +.d-inline-block, .touch .d-touch-inline-block, .fallback .d-fallback-inline-block, .baseline .d-baseline-inline-block, .ios .d-ios-inline-block, .android .d-android-inline-block { |
| 68 | + display: inline-block !important; |
| 69 | +} |
| 70 | + |
| 71 | +.d-xs-none { |
| 72 | + display: none !important; |
| 73 | +} |
| 74 | + |
| 75 | +.d-xs-inline { |
| 76 | + display: inline !important; |
| 77 | +} |
| 78 | + |
| 79 | +.d-xs-inline-block { |
| 80 | + display: inline-block !important; |
| 81 | +} |
| 82 | + |
| 83 | +.d-xs-block { |
| 84 | + display: block !important; |
| 85 | +} |
| 86 | + |
| 87 | +.d-xs-table { |
| 88 | + display: table !important; |
| 89 | +} |
| 90 | + |
| 91 | +.d-xs-table-cell { |
| 92 | + display: table-cell !important; |
| 93 | +} |
| 94 | + |
| 95 | +.d-xs-flex { |
| 96 | + display: flex !important; |
| 97 | +} |
| 98 | + |
| 99 | +.d-xs-inline-flex { |
| 100 | + display: inline-flex !important; |
| 101 | +} |
| 102 | + |
| 103 | +@media screen and (min-width: 576px) { |
| 104 | + .d-sm-none { |
| 105 | + display: none !important; |
| 106 | + } |
| 107 | + .d-sm-inline { |
| 108 | + display: inline !important; |
| 109 | + } |
| 110 | + .d-sm-inline-block { |
| 111 | + display: inline-block !important; |
| 112 | + } |
| 113 | + .d-sm-block { |
| 114 | + display: block !important; |
| 115 | + } |
| 116 | + .d-sm-table { |
| 117 | + display: table !important; |
| 118 | + } |
| 119 | + .d-sm-table-cell { |
| 120 | + display: table-cell !important; |
| 121 | + } |
| 122 | + .d-sm-flex { |
| 123 | + display: flex !important; |
| 124 | + } |
| 125 | + .d-sm-inline-flex { |
| 126 | + display: inline-flex !important; |
| 127 | + } |
| 128 | +} |
| 129 | + |
| 130 | +@media screen and (min-width: 768px) { |
| 131 | + .d-md-none { |
| 132 | + display: none !important; |
| 133 | + } |
| 134 | + .d-md-inline { |
| 135 | + display: inline !important; |
| 136 | + } |
| 137 | + .d-md-inline-block { |
| 138 | + display: inline-block !important; |
| 139 | + } |
| 140 | + .d-md-block { |
| 141 | + display: block !important; |
| 142 | + } |
| 143 | + .d-md-table { |
| 144 | + display: table !important; |
| 145 | + } |
| 146 | + .d-md-table-cell { |
| 147 | + display: table-cell !important; |
| 148 | + } |
| 149 | + .d-md-flex { |
| 150 | + display: flex !important; |
| 151 | + } |
| 152 | + .d-md-inline-flex { |
| 153 | + display: inline-flex !important; |
| 154 | + } |
| 155 | +} |
| 156 | + |
| 157 | +@media screen and (min-width: 992px) { |
| 158 | + .d-lg-none { |
| 159 | + display: none !important; |
| 160 | + } |
| 161 | + .d-lg-inline { |
| 162 | + display: inline !important; |
| 163 | + } |
| 164 | + .d-lg-inline-block { |
| 165 | + display: inline-block !important; |
| 166 | + } |
| 167 | + .d-lg-block { |
| 168 | + display: block !important; |
| 169 | + } |
| 170 | + .d-lg-table { |
| 171 | + display: table !important; |
| 172 | + } |
| 173 | + .d-lg-table-cell { |
| 174 | + display: table-cell !important; |
| 175 | + } |
| 176 | + .d-lg-flex { |
| 177 | + display: flex !important; |
| 178 | + } |
| 179 | + .d-lg-inline-flex { |
| 180 | + display: inline-flex !important; |
| 181 | + } |
| 182 | +} |
| 183 | + |
| 184 | +@media screen and (min-width: 1200px) { |
| 185 | + .d-xl-none { |
| 186 | + display: none !important; |
| 187 | + } |
| 188 | + .d-xl-inline { |
| 189 | + display: inline !important; |
| 190 | + } |
| 191 | + .d-xl-inline-block { |
| 192 | + display: inline-block !important; |
| 193 | + } |
| 194 | + .d-xl-block { |
| 195 | + display: block !important; |
| 196 | + } |
| 197 | + .d-xl-table { |
| 198 | + display: table !important; |
| 199 | + } |
| 200 | + .d-xl-table-cell { |
| 201 | + display: table-cell !important; |
| 202 | + } |
| 203 | + .d-xl-flex { |
| 204 | + display: flex !important; |
| 205 | + } |
| 206 | + .d-xl-inline-flex { |
| 207 | + display: inline-flex !important; |
| 208 | + } |
| 209 | +} |
0 commit comments