tutor-admin.css
4 years ago
tutor-admin.min.css
4 years ago
tutor-course-builder.css
4 years ago
tutor-course-builder.min.css
4 years ago
tutor-front.css
4 years ago
tutor-front.min.css
4 years ago
tutor-frontend-dashboard.css
4 years ago
tutor-frontend-dashboard.min.css
4 years ago
tutor-setup.css
4 years ago
tutor-setup.min.css
4 years ago
tutor-frontend-dashboard.css
572 lines
| 1 | .tutor-dashboard { |
| 2 | /* Only reusable function, or code allowed here. No direct css please. */ |
| 3 | } |
| 4 | |
| 5 | .tutor-dashboard .tutor-dropdown-menu { |
| 6 | min-width: 140px; |
| 7 | background: #353535; |
| 8 | color: white; |
| 9 | width: 100%; |
| 10 | position: absolute; |
| 11 | top: 40px; |
| 12 | right: -13px; |
| 13 | display: none; |
| 14 | border-radius: 5px; |
| 15 | padding: 0; |
| 16 | margin: 0; |
| 17 | } |
| 18 | |
| 19 | .tutor-dashboard .tutor-dropdown-menu:before { |
| 20 | content: ""; |
| 21 | position: absolute; |
| 22 | right: 10px; |
| 23 | background: linear-gradient(-45deg, transparent 50%, black 50%); |
| 24 | height: 10px; |
| 25 | width: 10px; |
| 26 | -webkit-transform: rotate(45deg); |
| 27 | transform: rotate(45deg); |
| 28 | top: -4px; |
| 29 | } |
| 30 | |
| 31 | .tutor-dashboard .tutor-dropdown-menu li { |
| 32 | list-style: none !important; |
| 33 | padding: 5px 15px 5px 15px; |
| 34 | cursor: pointer; |
| 35 | } |
| 36 | |
| 37 | .tutor-dashboard .tutor-dropdown-menu li:first-child { |
| 38 | border-top-left-radius: 6px; |
| 39 | border-top-right-radius: 6px; |
| 40 | } |
| 41 | |
| 42 | .tutor-dashboard .tutor-dropdown-menu li:last-child { |
| 43 | border-bottom-left-radius: 6px; |
| 44 | border-bottom-right-radius: 6px; |
| 45 | } |
| 46 | |
| 47 | .tutor-dashboard .tutor-dropdown-menu li:hover { |
| 48 | background-color: #6b6b6b; |
| 49 | } |
| 50 | |
| 51 | .tutor-dashboard .tutor-dropdown-menu li i { |
| 52 | padding-right: 4px; |
| 53 | } |
| 54 | |
| 55 | .tutor-dashboard .tutor-dashboard-inline-links { |
| 56 | margin-bottom: 30px; |
| 57 | } |
| 58 | |
| 59 | .tutor-dashboard .tutor-dashboard-inline-links ul { |
| 60 | margin: 0; |
| 61 | padding: 0; |
| 62 | border-bottom: 1px solid #dfe1e5; |
| 63 | } |
| 64 | |
| 65 | .tutor-dashboard .tutor-dashboard-inline-links ul li { |
| 66 | display: inline-block; |
| 67 | } |
| 68 | |
| 69 | .tutor-dashboard .tutor-dashboard-inline-links ul li a { |
| 70 | display: block; |
| 71 | padding: 5px 10px; |
| 72 | color: var(--tutor-primary-color); |
| 73 | margin-bottom: -1px; |
| 74 | line-height: 40px; |
| 75 | } |
| 76 | |
| 77 | .tutor-dashboard .tutor-dashboard-inline-links ul li a:hover { |
| 78 | color: var(--tutor-primary-color); |
| 79 | } |
| 80 | |
| 81 | .tutor-dashboard .tutor-dashboard-inline-links ul li.active a, .tutor-dashboard .tutor-dashboard-inline-links ul li a:hover { |
| 82 | color: var(--tutor-primary-color); |
| 83 | border-bottom: 1px solid var(--tutor-primary-color); |
| 84 | padding-bottom: 4px; |
| 85 | } |
| 86 | |
| 87 | .tutor-dashboard .tutor-dashboard-header { |
| 88 | display: -webkit-box; |
| 89 | display: -ms-flexbox; |
| 90 | display: flex; |
| 91 | display: -o-flex; |
| 92 | display: -ms-flex; |
| 93 | display: -moz-flex; |
| 94 | display: -webkit-flex; |
| 95 | -webkit-box-align: center; |
| 96 | -ms-flex-align: center; |
| 97 | align-items: center; |
| 98 | -o-align-items: center; |
| 99 | -ms-align-items: center; |
| 100 | -moz-align-items: center; |
| 101 | -webkit-align-items: center; |
| 102 | flex-wrap: wrap; |
| 103 | -o-flex-wrap: wrap; |
| 104 | -ms-flex-wrap: wrap; |
| 105 | -moz-flex-wrap: wrap; |
| 106 | -webkit-flex-wrap: wrap; |
| 107 | padding-bottom: 30px; |
| 108 | border-bottom: 1px solid #dcdfe5; |
| 109 | } |
| 110 | |
| 111 | .tutor-dashboard .tutor-dashboard-header .tutor-btn.bordered-btn { |
| 112 | text-transform: uppercase; |
| 113 | font-weight: 400; |
| 114 | border-radius: 2px; |
| 115 | } |
| 116 | |
| 117 | .tutor-dashboard .tutor-dashboard-header .tutor-btn.bordered-btn i { |
| 118 | font-size: 20px; |
| 119 | } |
| 120 | |
| 121 | .tutor-dashboard .tutor-dashboard-header .tutor-star-rating-group { |
| 122 | margin-right: 3px; |
| 123 | } |
| 124 | |
| 125 | .tutor-dashboard .tutor-dashboard-header .tutor-dashboard-header-avatar img { |
| 126 | display: block; |
| 127 | width: 150px; |
| 128 | height: 150px; |
| 129 | border-radius: 50%; |
| 130 | } |
| 131 | |
| 132 | .tutor-dashboard .tutor-dashboard-header .tutor-dashboard-header-info { |
| 133 | -webkit-box-flex: 1; |
| 134 | flex: 1; |
| 135 | -o-flex: 1; |
| 136 | -ms-flex: 1; |
| 137 | -moz-flex: 1; |
| 138 | -ms-flex-positive: 1; |
| 139 | flex-grow: 1; |
| 140 | -o-flex-grow: 1; |
| 141 | -ms-flex-grow: 1; |
| 142 | -moz-flex-grow: 1; |
| 143 | -webkit-flex-grow: 1; |
| 144 | padding-left: 24px; |
| 145 | padding-top: 15px; |
| 146 | padding-bottom: 15px; |
| 147 | } |
| 148 | |
| 149 | .tutor-dashboard .tutor-dashboard-header .tutor-dashboard-header-info .tutor-dashboard-header-display-name h4 { |
| 150 | font-size: 30px; |
| 151 | margin-top: 0px; |
| 152 | margin-bottom: 10px; |
| 153 | line-height: 34px; |
| 154 | } |
| 155 | |
| 156 | .tutor-dashboard .tutor-dashboard-header .tutor-dashboard-header-info .tutor-dashboard-header-stats { |
| 157 | display: -webkit-box; |
| 158 | display: -ms-flexbox; |
| 159 | display: flex; |
| 160 | display: -o-flex; |
| 161 | display: -ms-flex; |
| 162 | display: -moz-flex; |
| 163 | display: -webkit-flex; |
| 164 | flex-wrap: wrap; |
| 165 | -o-flex-wrap: wrap; |
| 166 | -ms-flex-wrap: wrap; |
| 167 | -moz-flex-wrap: wrap; |
| 168 | -webkit-flex-wrap: wrap; |
| 169 | line-height: 25px; |
| 170 | } |
| 171 | |
| 172 | .tutor-dashboard .tutor-dashboard-header .tutor-dashboard-header-info .tutor-dashboard-header-stats > div:not(:first-child) { |
| 173 | margin-left: 30px; |
| 174 | } |
| 175 | |
| 176 | .tutor-dashboard .tutor-dashboard-header .tutor-dashboard-header-button { |
| 177 | padding-top: 15px; |
| 178 | } |
| 179 | |
| 180 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks { |
| 181 | list-style: none; |
| 182 | margin: 0px 0 20px; |
| 183 | padding: 20px 0; |
| 184 | border-right: 1px solid #dcdfe5; |
| 185 | } |
| 186 | |
| 187 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks a, .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks a:hover, .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks a:active, .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks a:focus { |
| 188 | text-decoration: none; |
| 189 | } |
| 190 | |
| 191 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks a::before { |
| 192 | content: "\e968"; |
| 193 | font-family: "tutor" !important; |
| 194 | speak: none; |
| 195 | font-style: normal; |
| 196 | font-weight: normal; |
| 197 | font-variant: normal; |
| 198 | text-transform: none; |
| 199 | line-height: inherit; |
| 200 | -webkit-font-smoothing: antialiased; |
| 201 | -moz-osx-font-smoothing: grayscale; |
| 202 | margin-right: 15px; |
| 203 | vertical-align: middle; |
| 204 | color: var(--tutor-primary-color); |
| 205 | opacity: 0.6; |
| 206 | -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; |
| 207 | font-size: 17px; |
| 208 | } |
| 209 | |
| 210 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks a:hover::before { |
| 211 | opacity: 1; |
| 212 | -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; |
| 213 | color: var(--tutor-primary-hover-color); |
| 214 | } |
| 215 | |
| 216 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li a { |
| 217 | display: block; |
| 218 | color: var(--tutor-text-color); |
| 219 | padding: 10px 20px; |
| 220 | line-height: 28px; |
| 221 | } |
| 222 | |
| 223 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li a:hover { |
| 224 | background-color: #edf0f9; |
| 225 | } |
| 226 | |
| 227 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.active a { |
| 228 | background-color: var(--tutor-primary-color); |
| 229 | color: #ffffff; |
| 230 | } |
| 231 | |
| 232 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.active a:hover { |
| 233 | background-color: var(--tutor-primary-hover-color); |
| 234 | } |
| 235 | |
| 236 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.active a:before { |
| 237 | opacity: 1; |
| 238 | -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; |
| 239 | color: #fff; |
| 240 | } |
| 241 | |
| 242 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-bio a:before, |
| 243 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-my-profile a:before { |
| 244 | content: "\e963"; |
| 245 | } |
| 246 | |
| 247 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-enrolled-courses a:before { |
| 248 | content: "\e969"; |
| 249 | } |
| 250 | |
| 251 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-courses_taken a:before, |
| 252 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-my-courses a:before { |
| 253 | content: "\e965"; |
| 254 | } |
| 255 | |
| 256 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-announcements a:before { |
| 257 | content: "\e93f"; |
| 258 | } |
| 259 | |
| 260 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-wishlist a:before { |
| 261 | content: "\e908"; |
| 262 | } |
| 263 | |
| 264 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-reviews a:before { |
| 265 | content: "\e917"; |
| 266 | } |
| 267 | |
| 268 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-my-quiz-attempts a:before { |
| 269 | content: "\e9ab"; |
| 270 | } |
| 271 | |
| 272 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-quiz-attempts a:before { |
| 273 | content: "\e91f"; |
| 274 | } |
| 275 | |
| 276 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-question-answer a:before { |
| 277 | content: "\e948"; |
| 278 | } |
| 279 | |
| 280 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-earning a:before { |
| 281 | content: "\e96b"; |
| 282 | } |
| 283 | |
| 284 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-withdraw a:before { |
| 285 | content: "\e960"; |
| 286 | } |
| 287 | |
| 288 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-settings a:before { |
| 289 | content: "\e961"; |
| 290 | } |
| 291 | |
| 292 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-logout a:before { |
| 293 | content: "\e962"; |
| 294 | } |
| 295 | |
| 296 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-purchase_history a:before { |
| 297 | content: "\e964"; |
| 298 | } |
| 299 | |
| 300 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-assignments a:before { |
| 301 | content: "\e98b"; |
| 302 | } |
| 303 | |
| 304 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-zoom a:before { |
| 305 | content: "\e9b1"; |
| 306 | } |
| 307 | |
| 308 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-analytics a:before { |
| 309 | content: "\e9b2"; |
| 310 | } |
| 311 | |
| 312 | .tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.tutor-dashboard-menu-calendar a:before { |
| 313 | content: "\e9b3"; |
| 314 | } |
| 315 | |
| 316 | .tutor-dashboard .tutor-dashboard-content { |
| 317 | padding-top: 30px; |
| 318 | /* dashboard content */ |
| 319 | /* earning cards. Currently same as dashboard, in later version it will be updated separately */ |
| 320 | } |
| 321 | |
| 322 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-info-cards { |
| 323 | margin: 0 -15px 15px; |
| 324 | padding: 0; |
| 325 | display: -webkit-box; |
| 326 | display: -ms-flexbox; |
| 327 | display: flex; |
| 328 | list-style: none; |
| 329 | -ms-flex-wrap: wrap; |
| 330 | flex-wrap: wrap; |
| 331 | } |
| 332 | |
| 333 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-info-cards .tutor-dashboard-info-card { |
| 334 | padding: 15px; |
| 335 | min-width: 33.333%; |
| 336 | } |
| 337 | |
| 338 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-info-cards .tutor-dashboard-info-card p { |
| 339 | margin: 0; |
| 340 | padding: 15px 25px; |
| 341 | background: #282c36; |
| 342 | color: #ffffff; |
| 343 | border-radius: 4px; |
| 344 | } |
| 345 | |
| 346 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-info-cards .tutor-dashboard-info-card p span.tutor-dashboard-info-val { |
| 347 | display: block; |
| 348 | font-weight: 700; |
| 349 | font-size: 30px; |
| 350 | line-height: 1.618; |
| 351 | } |
| 352 | |
| 353 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-info-cards .tutor-dashboard-info-card p span span { |
| 354 | display: inline-block; |
| 355 | } |
| 356 | |
| 357 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-info-cards .tutor-dashboard-info-card p span > * { |
| 358 | vertical-align: middle; |
| 359 | } |
| 360 | |
| 361 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-profile .tutor-dashboard-profile-item { |
| 362 | display: -webkit-box; |
| 363 | display: -ms-flexbox; |
| 364 | display: flex; |
| 365 | } |
| 366 | |
| 367 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-profile .tutor-dashboard-profile-item .heading { |
| 368 | min-width: 190px; |
| 369 | } |
| 370 | |
| 371 | @media (max-width: 480px) { |
| 372 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-profile .tutor-dashboard-profile-item { |
| 373 | -ms-flex-wrap: wrap; |
| 374 | flex-wrap: wrap; |
| 375 | } |
| 376 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-profile .tutor-dashboard-profile-item .heading { |
| 377 | min-width: 100%; |
| 378 | width: 100%; |
| 379 | font-weight: 700; |
| 380 | margin-bottom: 6px; |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-profile .tutor-dashboard-profile-item .content { |
| 385 | -webkit-box-flex: 1; |
| 386 | -ms-flex-positive: 1; |
| 387 | flex-grow: 1; |
| 388 | } |
| 389 | |
| 390 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-profile .tutor-dashboard-profile-item .content small { |
| 391 | font-size: inherit; |
| 392 | font-style: italic; |
| 393 | } |
| 394 | |
| 395 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-profile .tutor-dashboard-profile-item .content small a { |
| 396 | color: var(--tutor-primary-color); |
| 397 | } |
| 398 | |
| 399 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-profile .tutor-dashboard-profile-item .content small a:hover { |
| 400 | color: var(--tutor-primary-hover-color); |
| 401 | } |
| 402 | |
| 403 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-single-review { |
| 404 | border: 1px solid #dcdfe5; |
| 405 | border-radius: 4px; |
| 406 | margin-bottom: 30px; |
| 407 | } |
| 408 | |
| 409 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-single-review .tutor-dashboard-review-heading { |
| 410 | padding: 10px 20px; |
| 411 | border-bottom: 1px solid #dcdfe5; |
| 412 | display: -webkit-box; |
| 413 | display: -ms-flexbox; |
| 414 | display: flex; |
| 415 | -webkit-box-align: center; |
| 416 | -ms-flex-align: center; |
| 417 | align-items: center; |
| 418 | } |
| 419 | |
| 420 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-single-review .tutor-dashboard-review-heading .tutor-dashboard-review-title { |
| 421 | font-size: 18px; |
| 422 | -webkit-box-flex: 1; |
| 423 | -ms-flex-positive: 1; |
| 424 | flex-grow: 1; |
| 425 | white-space: nowrap; |
| 426 | overflow: hidden; |
| 427 | text-overflow: ellipsis; |
| 428 | font-weight: 300; |
| 429 | } |
| 430 | |
| 431 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-single-review .tutor-dashboard-review-heading .tutor-dashboard-review-title a { |
| 432 | font-weight: 500; |
| 433 | color: var(--tutor-primary-color); |
| 434 | } |
| 435 | |
| 436 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-single-review .tutor-dashboard-review-heading .tutor-dashboard-review-title a:hover { |
| 437 | color: var(--tutor-primary-hover-color); |
| 438 | } |
| 439 | |
| 440 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-single-review .tutor-dashboard-review-heading .tutor-dashboard-review-links { |
| 441 | white-space: nowrap; |
| 442 | font-weight: 400; |
| 443 | } |
| 444 | |
| 445 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-single-review .tutor-dashboard-review-heading .tutor-dashboard-review-links a { |
| 446 | color: #8c94a8; |
| 447 | margin-left: 10px; |
| 448 | display: -webkit-inline-box; |
| 449 | display: -ms-inline-flexbox; |
| 450 | display: inline-flex; |
| 451 | -webkit-box-align: center; |
| 452 | -ms-flex-align: center; |
| 453 | align-items: center; |
| 454 | font-size: 14px; |
| 455 | } |
| 456 | |
| 457 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-single-review .tutor-dashboard-review-heading .tutor-dashboard-review-links a i { |
| 458 | line-height: inherit; |
| 459 | font-size: 14px; |
| 460 | margin-right: 5px; |
| 461 | } |
| 462 | |
| 463 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-single-review .individual-dashboard-review-body { |
| 464 | padding: 10px 20px; |
| 465 | } |
| 466 | |
| 467 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-single-review .individual-dashboard-review-body .review-meta { |
| 468 | font-size: 85%; |
| 469 | margin: 0; |
| 470 | color: #8c94a8; |
| 471 | } |
| 472 | |
| 473 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-single-review .individual-dashboard-review-body .individual-star-rating-wrap { |
| 474 | display: -webkit-box; |
| 475 | display: -ms-flexbox; |
| 476 | display: flex; |
| 477 | -webkit-box-align: center; |
| 478 | -ms-flex-align: center; |
| 479 | align-items: center; |
| 480 | } |
| 481 | |
| 482 | .tutor-dashboard .tutor-dashboard-content .tutor-edit-review-modal-wrap .modal-close-wrap a.modal-close-btn { |
| 483 | color: #222222; |
| 484 | background: none; |
| 485 | font-size: 20px; |
| 486 | top: 8px; |
| 487 | } |
| 488 | |
| 489 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-earning-info-cards { |
| 490 | margin: 0 -15px 15px; |
| 491 | padding: 0; |
| 492 | display: -webkit-box; |
| 493 | display: -ms-flexbox; |
| 494 | display: flex; |
| 495 | list-style: none; |
| 496 | -ms-flex-wrap: wrap; |
| 497 | flex-wrap: wrap; |
| 498 | } |
| 499 | |
| 500 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-earning-info-cards .tutor-dashboard-info-card { |
| 501 | padding: 15px; |
| 502 | min-width: 33.333%; |
| 503 | } |
| 504 | |
| 505 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-earning-info-cards .tutor-dashboard-info-card p { |
| 506 | margin: 0; |
| 507 | padding: 15px 25px; |
| 508 | background: #282c36; |
| 509 | color: #ffffff; |
| 510 | border-radius: 4px; |
| 511 | } |
| 512 | |
| 513 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-earning-info-cards .tutor-dashboard-info-card p span.tutor-dashboard-info-val { |
| 514 | display: block; |
| 515 | font-weight: 700; |
| 516 | font-size: 30px; |
| 517 | line-height: 1.618; |
| 518 | } |
| 519 | |
| 520 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-earning-info-cards .tutor-dashboard-info-card p span span { |
| 521 | display: inline-block; |
| 522 | } |
| 523 | |
| 524 | .tutor-dashboard .tutor-dashboard-content .tutor-dashboard-earning-info-cards .tutor-dashboard-info-card p span > * { |
| 525 | vertical-align: middle; |
| 526 | } |
| 527 | |
| 528 | .tutor-dashboard .tutor-dashboard-content .tutor-quiz-attempt-history table { |
| 529 | background: 1px solid #dcdfe5; |
| 530 | border-collapse: collapse; |
| 531 | } |
| 532 | |
| 533 | .tutor-dashboard .tutor-dashboard-content .tutor-quiz-attempt-history table tr th { |
| 534 | background: #fafbfc; |
| 535 | } |
| 536 | |
| 537 | .tutor-dashboard .tutor-dashboard-content .tutor-quiz-attempt-history table tr th, .tutor-dashboard .tutor-dashboard-content .tutor-quiz-attempt-history table tr td { |
| 538 | vertical-align: middle; |
| 539 | border: 1px solid #dcdfe5; |
| 540 | } |
| 541 | |
| 542 | .tutor-dashboard .tutor-dashboard-content .tutor-quiz-attempt-history table tr td:first-child { |
| 543 | padding: 15px 13px !important; |
| 544 | } |
| 545 | |
| 546 | .tutor-dashboard .tutor-dashboard-content .tutor-quiz-attempt-history table tr td:last-child { |
| 547 | text-align: center; |
| 548 | } |
| 549 | |
| 550 | .tutor-dashboard .tutor-dashboard-content .tutor-quiz-attempt-history table tr td:last-child a { |
| 551 | display: block; |
| 552 | padding: 10px; |
| 553 | } |
| 554 | |
| 555 | .tutor-dashboard .tutor-dashboard-content .tutor-quiz-attempt-history table a { |
| 556 | color: var(--tutor-primary-color); |
| 557 | font-weight: 700; |
| 558 | line-height: 24px; |
| 559 | } |
| 560 | |
| 561 | .tutor-dashboard .tutor-dashboard-content .tutor-quiz-attempt-history table a:hover { |
| 562 | color: var(--tutor-primary-hover-color); |
| 563 | } |
| 564 | |
| 565 | .tutor-dashboard .tutor-dashboard-content .tutor-quiz-attempt-history table span.result-fail, .tutor-dashboard .tutor-dashboard-content .tutor-quiz-attempt-history table span.result-pass { |
| 566 | width: auto; |
| 567 | height: auto; |
| 568 | line-height: 19px; |
| 569 | padding: 0 6.5px; |
| 570 | margin-right: 4px; |
| 571 | } |
| 572 |