__archive.scss
6 years ago
__dashboard_assignment.scss
6 years ago
__dashboard_delete_popup.scss
6 years ago
__dashboard_withdraw_method.scss
6 years ago
_dashboard.scss
6 years ago
_frontend_course_builder.scss
6 years ago
_layout.scss
6 years ago
_option_input.scss
6 years ago
_single_course.scss
6 years ago
_theme.scss
6 years ago
main.scss
6 years ago
_layout.scss
112 lines
| 1 | |
| 2 | /** |
| 3 | * Important Layout Styles |
| 4 | */ |
| 5 | |
| 6 | .tutor-container{ |
| 7 | padding-left: 15px; |
| 8 | padding-right: 15px; |
| 9 | max-width: 1140px; |
| 10 | margin-right: auto; |
| 11 | margin-left: auto; |
| 12 | width: 100%; |
| 13 | &.tutor-fluid{ |
| 14 | max-width: 100%; |
| 15 | } |
| 16 | } |
| 17 | .tutor-row{ |
| 18 | display: flex; |
| 19 | flex-wrap: wrap; |
| 20 | margin-right: -15px; |
| 21 | margin-left: -15px; |
| 22 | } |
| 23 | .tutor-col-auto, |
| 24 | .tutor-col, |
| 25 | .tutor-col-3, |
| 26 | .tutor-col-4, |
| 27 | .tutor-col-5, |
| 28 | .tutor-col-6, |
| 29 | .tutor-col-7, |
| 30 | .tutor-col-8, |
| 31 | .tutor-col-9, |
| 32 | .tutor-col-12{ |
| 33 | position: relative; |
| 34 | width: 100%; |
| 35 | min-height: 1px; |
| 36 | padding-right: 15px; |
| 37 | padding-left: 15px; |
| 38 | } |
| 39 | .tutor-col{ |
| 40 | flex-basis: 0; |
| 41 | flex-grow: 1; |
| 42 | max-width: 100%; |
| 43 | } |
| 44 | .tutor-col-auto { |
| 45 | flex: 0 0 auto; |
| 46 | width: auto; |
| 47 | max-width: none; |
| 48 | } |
| 49 | .tutor-col-3{ |
| 50 | flex: 0 0 25%; |
| 51 | max-width: 25%; |
| 52 | } |
| 53 | .tutor-col-4{ |
| 54 | flex: 0 0 33.333333%; |
| 55 | max-width: 33.333333%; |
| 56 | } |
| 57 | .tutor-col-5{ |
| 58 | flex: 0 0 41.666667%; |
| 59 | max-width: 41.666667%; |
| 60 | } |
| 61 | .tutor-col-6{ |
| 62 | flex: 0 0 50%; |
| 63 | max-width: 50%; |
| 64 | } |
| 65 | .tutor-col-7{ |
| 66 | flex: 0 0 58.333333%; |
| 67 | max-width: 58.333333%; |
| 68 | } |
| 69 | .tutor-col-8{ |
| 70 | flex: 0 0 66.666666%; |
| 71 | max-width: 66.666666%; |
| 72 | } |
| 73 | .tutor-col-9{ |
| 74 | flex: 0 0 75%; |
| 75 | max-width: 75%; |
| 76 | } |
| 77 | .tutor-col-12{ |
| 78 | flex: 0 0 100%; |
| 79 | max-width: 100%; |
| 80 | } |
| 81 | .tutor-align-items-center{ |
| 82 | align-items: center; |
| 83 | } |
| 84 | @media (max-width: 991px) { |
| 85 | .tutor-col-auto, |
| 86 | .tutor-col, |
| 87 | .tutor-col-3, |
| 88 | .tutor-col-4, |
| 89 | .tutor-col-6, |
| 90 | .tutor-col-8, |
| 91 | .tutor-col-9{ |
| 92 | flex: 0 0 50%; |
| 93 | max-width: 50%; |
| 94 | } |
| 95 | .tutor-col-md-100{ |
| 96 | flex: 0 0 100%; |
| 97 | max-width: 100%; |
| 98 | } |
| 99 | } |
| 100 | @media (max-width: 767px) { |
| 101 | .tutor-col-auto, |
| 102 | .tutor-col, |
| 103 | .tutor-col-3, |
| 104 | .tutor-col-4, |
| 105 | .tutor-col-6, |
| 106 | .tutor-col-8, |
| 107 | .tutor-col-9{ |
| 108 | flex: 0 0 100%; |
| 109 | max-width: 100%; |
| 110 | } |
| 111 | } |
| 112 |