admin
2 years ago
_Accordion.scss
2 years ago
_Alerts_box.scss
2 years ago
_Animated_Headline.scss
2 years ago
_Animation.scss
2 years ago
_Before_after.scss
2 years ago
_Buttons.scss
2 years ago
_Cheat_sheet.scss
2 years ago
_Common.scss
2 years ago
_Counter.scss
2 years ago
_Fullscreen_Slider.scss
2 years ago
_Icon_box.scss
2 years ago
_Instagram.scss
2 years ago
_Integration.scss
2 years ago
_List_item.scss
2 years ago
_Mixins.scss
2 years ago
_Pricing_Table.scss
2 years ago
_Pricing_Table_Switcher.scss
2 years ago
_Skill_Showcase.scss
2 years ago
_Tabs.scss
2 years ago
_Testimonial.scss
2 years ago
_Timeline.scss
2 years ago
_Variables.scss
2 years ago
_Video.scss
2 years ago
_Video_popup.scss
2 years ago
_blog_grid.scss
2 years ago
_framework.scss
2 years ago
_prefix.scss
2 years ago
_team.scss
2 years ago
admin.css
2 years ago
admin.css.map
2 years ago
admin.scss
2 years ago
main.css
2 years ago
main.css.map
2 years ago
main.scss
2 years ago
_framework.scss
413 lines
| 1 | // ezd grid columns css |
| 2 | .ezd-grid { |
| 3 | display: grid; |
| 4 | grid-template-columns: repeat(3, 1fr); |
| 5 | grid-column-gap: 25px; |
| 6 | |
| 7 | &.ezd-column-1 { |
| 8 | grid-template-columns: repeat(1, 1fr); |
| 9 | } |
| 10 | |
| 11 | &.ezd-column-2 { |
| 12 | grid-template-columns: repeat(2, 1fr); |
| 13 | @media (max-width: 600px) { |
| 14 | grid-template-columns: repeat(1, 1fr); |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | &.ezd-column-4 { |
| 19 | grid-template-columns: repeat(4, 1fr); |
| 20 | @media (max-width: 991px) { |
| 21 | grid-template-columns: repeat(2, 1fr); |
| 22 | } |
| 23 | @media (max-width: 600px) { |
| 24 | grid-template-columns: repeat(1, 1fr); |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | &.ezd-column-3 { |
| 29 | grid-template-columns: repeat(3, 1fr); |
| 30 | @media (max-width: 991px) { |
| 31 | grid-template-columns: repeat(2, 1fr); |
| 32 | } |
| 33 | @media (max-width: 600px) { |
| 34 | grid-template-columns: repeat(1, 1fr); |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | &.ezd-column-5 { |
| 39 | grid-template-columns: repeat(5, 1fr); |
| 40 | @media (max-width: 991px) { |
| 41 | grid-template-columns: repeat(3, 1fr); |
| 42 | } |
| 43 | @media (max-width: 600px) { |
| 44 | grid-template-columns: repeat(1, 1fr); |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | &.ezd-column-6 { |
| 49 | grid-template-columns: repeat(6, 1fr); |
| 50 | @media (max-width: 991px) { |
| 51 | grid-template-columns: repeat(2, 1fr); |
| 52 | } |
| 53 | @media (max-width: 600px) { |
| 54 | grid-template-columns: repeat(1, 1fr); |
| 55 | } |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | // columns css |
| 60 | .ezd-grid-cols-12 { |
| 61 | grid-template-columns: repeat(12, minmax(0, 1fr)); |
| 62 | } |
| 63 | |
| 64 | .ezd-grid-column-full, |
| 65 | [class^="ezd-lg-col"]^="ezd-lg-col""], |
| 66 | [class^="ezd-md-col"]^="ezd-md-col""], |
| 67 | [class^="ezd-sm-col"]^="ezd-sm-col""] { |
| 68 | grid-column: 1 / -1; |
| 69 | } |
| 70 | |
| 71 | @media (max-width: 991px) { |
| 72 | [class^="ezd-lg-col"]^="ezd-lg-col""] { |
| 73 | grid-column: 1 / -1; |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | @media (min-width: 576px) { |
| 78 | .ezd-sm-col-4 { |
| 79 | grid-column: span 4 / span 4; |
| 80 | } |
| 81 | .ezd-sm-col-3 { |
| 82 | grid-column: span 3 / span 3; |
| 83 | } |
| 84 | .ezd-sm-col-5 { |
| 85 | grid-column: span 5 / span 5; |
| 86 | } |
| 87 | .ezd-sm-col-6 { |
| 88 | grid-column: span 6 / span 6; |
| 89 | } |
| 90 | .ezd-sm-col-7 { |
| 91 | grid-column: span 7 / span 7; |
| 92 | } |
| 93 | .ezd-sm-col-8 { |
| 94 | grid-column: span 8 / span 8; |
| 95 | } |
| 96 | .ezd-sm-col-9 { |
| 97 | grid-column: span 9 / span 9; |
| 98 | } |
| 99 | .ezd-sm-col-10 { |
| 100 | grid-column: span 10 / span 10; |
| 101 | } |
| 102 | .ezd-sm-col-2 { |
| 103 | grid-column: span 2 / span 2; |
| 104 | } |
| 105 | .ezd-sm-col-11 { |
| 106 | grid-column: span 11 / span 11; |
| 107 | } |
| 108 | .ezd-sm-col-12 { |
| 109 | grid-column: span 12 / span 12; |
| 110 | } |
| 111 | .ezd-justify-content-sm-between { |
| 112 | justify-content: space-between !important; |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | @media (min-width: 768px) { |
| 117 | .ezd-md-col-4 { |
| 118 | grid-column: span 4 / span 4; |
| 119 | } |
| 120 | .ezd-md-col-3 { |
| 121 | grid-column: span 3 / span 3; |
| 122 | } |
| 123 | .ezd-md-col-5 { |
| 124 | grid-column: span 5 / span 5; |
| 125 | } |
| 126 | .ezd-md-col-6 { |
| 127 | grid-column: span 6 / span 6; |
| 128 | } |
| 129 | .ezd-md-col-7 { |
| 130 | grid-column: span 7 / span 7; |
| 131 | } |
| 132 | .ezd-md-col-8 { |
| 133 | grid-column: span 8 / span 8; |
| 134 | } |
| 135 | .ezd-md-col-9 { |
| 136 | grid-column: span 9 / span 9; |
| 137 | } |
| 138 | .ezd-md-col-10 { |
| 139 | grid-column: span 10 / span 10; |
| 140 | } |
| 141 | .ezd-md-col-11 { |
| 142 | grid-column: span 11 / span 11; |
| 143 | } |
| 144 | .ezd-md-col-12 { |
| 145 | grid-column: span 12 / span 12; |
| 146 | } |
| 147 | .ezd-md-col-2 { |
| 148 | grid-column: span 2 / span 2; |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | @media (min-width: 992px) { |
| 153 | .ezd-lg-col-4 { |
| 154 | grid-column: span 4 / span 4; |
| 155 | } |
| 156 | .ezd-lg-col-3 { |
| 157 | grid-column: span 3 / span 3; |
| 158 | } |
| 159 | .ezd-lg-col-5 { |
| 160 | grid-column: span 5 / span 5; |
| 161 | } |
| 162 | .ezd-lg-col-6 { |
| 163 | grid-column: span 6 / span 6; |
| 164 | } |
| 165 | .ezd-lg-col-8 { |
| 166 | grid-column: span 8 / span 8; |
| 167 | } |
| 168 | .ezd-lg-col-7 { |
| 169 | grid-column: span 7 / span 7; |
| 170 | } |
| 171 | .ezd-lg-col-9 { |
| 172 | grid-column: span 9 / span 9; |
| 173 | } |
| 174 | .ezd-lg-col-10 { |
| 175 | grid-column: span 10 / span 10; |
| 176 | } |
| 177 | .ezd-lg-col-11 { |
| 178 | grid-column: span 11 / span 11; |
| 179 | } |
| 180 | .ezd-lg-col-12 { |
| 181 | grid-column: span 12 / span 12; |
| 182 | } |
| 183 | .ezd-lg-col-2 { |
| 184 | grid-column: span 2 / span 2; |
| 185 | } |
| 186 | .ezd-d-lg-block { |
| 187 | display: block !important; |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | @media (min-width: 1200px) { |
| 192 | .ezd-xl-col-4 { |
| 193 | grid-column: span 4 / span 4; |
| 194 | } |
| 195 | .ezd-xl-col-3 { |
| 196 | grid-column: span 3 / span 3; |
| 197 | } |
| 198 | .ezd-xl-col-5 { |
| 199 | grid-column: span 5 / span 5; |
| 200 | } |
| 201 | .ezd-xl-col-6 { |
| 202 | grid-column: span 6 / span 6; |
| 203 | } |
| 204 | .ezd-xl-col-8 { |
| 205 | grid-column: span 8 / span 8; |
| 206 | } |
| 207 | .ezd-xl-col-7 { |
| 208 | grid-column: span 7 / span 7; |
| 209 | } |
| 210 | .ezd-xl-col-9 { |
| 211 | grid-column: span 9 / span 9; |
| 212 | } |
| 213 | .ezd-xl-col-10 { |
| 214 | grid-column: span 10 / span 10; |
| 215 | } |
| 216 | .ezd-xl-col-11 { |
| 217 | grid-column: span 11 / span 11; |
| 218 | } |
| 219 | .ezd-xl-col-12 { |
| 220 | grid-column: span 12 / span 12; |
| 221 | } |
| 222 | .ezd-xl-col-2 { |
| 223 | grid-column: span 2 / span 2; |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | .ezd-list-unstyled { |
| 228 | list-style: none !important; |
| 229 | padding: 0px; |
| 230 | } |
| 231 | |
| 232 | .ezd-tab-content { |
| 233 | display: block; |
| 234 | } |
| 235 | .ezd-btn-circle { |
| 236 | border-radius: 15px; |
| 237 | } |
| 238 | |
| 239 | .ezd-rounded-circle { |
| 240 | border-radius: 50% !important; |
| 241 | } |
| 242 | .ezd-ms-3 { |
| 243 | margin-left: 1rem; |
| 244 | } |
| 245 | .ezd-order-lg-last { |
| 246 | order: 6 !important; |
| 247 | } |
| 248 | .ezd-order-lg-first { |
| 249 | order: -1 !important; |
| 250 | } |
| 251 | .ezd-custom-container.ezd-container { |
| 252 | width: 100%; |
| 253 | @media (min-width: 1300px) { |
| 254 | max-width: 1240px; |
| 255 | } |
| 256 | @media (min-width: 1500px) { |
| 257 | max-width: 1470px; |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | .ezd-container { |
| 262 | padding-left: 0.75rem; |
| 263 | padding-right: 0.75rem; |
| 264 | |
| 265 | @media (min-width: 1200px) { |
| 266 | max-width: 1140px; |
| 267 | } |
| 268 | @media (min-width: 992px) { |
| 269 | max-width: 960px; |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | .eazydocs_shortcode .ezd-container, |
| 274 | .ezd-container { |
| 275 | width: 100%; |
| 276 | margin-right: auto; |
| 277 | margin-left: auto; |
| 278 | @media (min-width: 1200px) { |
| 279 | max-width: 1200px; |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | .modal { |
| 284 | position: fixed; |
| 285 | top: 0; |
| 286 | left: 0; |
| 287 | z-index: 1055; |
| 288 | display: none; |
| 289 | width: 100%; |
| 290 | height: 100%; |
| 291 | overflow-x: hidden; |
| 292 | overflow-y: auto; |
| 293 | outline: 0; |
| 294 | } |
| 295 | |
| 296 | .modal-dialog { |
| 297 | position: relative; |
| 298 | width: auto; |
| 299 | margin: 0.5rem; |
| 300 | pointer-events: none; |
| 301 | } |
| 302 | |
| 303 | .modal-content { |
| 304 | position: relative; |
| 305 | display: flex; |
| 306 | flex-direction: column; |
| 307 | width: 100%; |
| 308 | pointer-events: auto; |
| 309 | background-color: #fff; |
| 310 | background-clip: padding-box; |
| 311 | border: 1px solid rgba(0, 0, 0, 0.2); |
| 312 | border-radius: 0.3rem; |
| 313 | outline: 0; |
| 314 | } |
| 315 | |
| 316 | .modal.is-visible { |
| 317 | visibility: visible; |
| 318 | display: block; |
| 319 | } |
| 320 | |
| 321 | .modal-overlay { |
| 322 | position: fixed; |
| 323 | z-index: 10; |
| 324 | top: 0; |
| 325 | left: 0; |
| 326 | width: 100%; |
| 327 | height: 100%; |
| 328 | transition: visibility 0s linear 0.3s, opacity 0.3s; |
| 329 | } |
| 330 | |
| 331 | @media (min-width: 576px) { |
| 332 | .modal-dialog { |
| 333 | margin: 1.75rem auto; |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | /** === Utility Classes === **/ |
| 338 | .ezd-d-flex { |
| 339 | display: flex; |
| 340 | } |
| 341 | |
| 342 | .ezd-circle { |
| 343 | border-radius: 50% !important; |
| 344 | } |
| 345 | |
| 346 | .ezd-align-items-center { |
| 347 | align-items: center; |
| 348 | } |
| 349 | |
| 350 | .ezd-align-items-start { |
| 351 | align-items: start; |
| 352 | } |
| 353 | |
| 354 | .ezd-align-items-end { |
| 355 | align-items: end; |
| 356 | } |
| 357 | |
| 358 | .ezd-justify-content-between { |
| 359 | justify-content: space-between; |
| 360 | } |
| 361 | |
| 362 | .ezd-justify-content-center { |
| 363 | justify-content: center; |
| 364 | } |
| 365 | |
| 366 | .ezd-justify-content-start { |
| 367 | justify-content: start; |
| 368 | } |
| 369 | |
| 370 | .ezd-position-relative { |
| 371 | position: relative; |
| 372 | } |
| 373 | .ezd-position-absolute { |
| 374 | position: absolute; |
| 375 | } |
| 376 | |
| 377 | .ezd-d-inline-block { |
| 378 | display: inline-block; |
| 379 | } |
| 380 | |
| 381 | .ezd-text-center { |
| 382 | text-align: center; |
| 383 | } |
| 384 | |
| 385 | .ezd-shadow-lg { |
| 386 | box-shadow: 0 1rem 1.2rem rgba(0, 0, 0, 0.175) !important; |
| 387 | } |
| 388 | |
| 389 | .ezd-m-auto { |
| 390 | margin-left: auto; |
| 391 | margin-right: auto; |
| 392 | } |
| 393 | .ezd-ms-auto { |
| 394 | margin-left: auto; |
| 395 | margin-right: 0; |
| 396 | } |
| 397 | .ezd-me-auto { |
| 398 | margin-left: 0; |
| 399 | margin-right: auto; |
| 400 | } |
| 401 | |
| 402 | [type="button"]="button""]:focus, |
| 403 | [type="submit"]="submit""]:focus, |
| 404 | button:focus { |
| 405 | outline: 0px auto -webkit-focus-ring-color; |
| 406 | } |
| 407 | |
| 408 | .ezd-d-md-block { |
| 409 | @media (min-width: 992px) { |
| 410 | display: block; |
| 411 | } |
| 412 | } |
| 413 |