Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6362 | Rev 6688 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6362 Rev 6366
Línea 2300... Línea 2300...
2300
        cursor: pointer;
2300
        cursor: pointer;
2301
        border-radius: 0 4px 4px 0;
2301
        border-radius: 0 4px 4px 0;
2302
    }
2302
    }
2303
}
2303
}
Línea 2304... Línea -...
2304
 
-
 
2305
 
-
 
2306
/* =============== filter-secs ============== */
-
 
2307
 
-
 
2308
.filter-form {
-
 
2309
    display: flex;
-
 
2310
    flex-direction: column;
-
 
2311
    gap: 1rem;
-
 
2312
}
-
 
2313
 
-
 
2314
.filter-secs {
-
 
2315
    width: 100%;
-
 
2316
    background-color: $bg-color;
-
 
2317
    border: 1px solid $border-primary;
-
 
2318
    border-radius: $border-radius;
-
 
2319
    box-shadow: $shadow;
-
 
2320
}
-
 
2321
 
-
 
2322
.filter-heading {
-
 
2323
    width: 100%;
-
 
2324
    padding: 1rem;
-
 
2325
    border-bottom: 1px solid $border-primary;
-
 
2326
 
-
 
2327
    h3 {
-
 
2328
        font-size: 18px;
-
 
2329
        font-weight: 600;
-
 
2330
        color: $subtitle-color;
-
 
2331
    }
-
 
2332
 
-
 
2333
    a {
-
 
2334
        font-size: 14px;
-
 
2335
        margin-top: 4px;
-
 
2336
        color: $title-color;
-
 
2337
    }
-
 
2338
}
-
 
2339
 
-
 
2340
 
-
 
2341
.filter-ttl {
-
 
2342
    width: 100%;
-
 
2343
    border-bottom: 1px solid #e5e5e5;
-
 
2344
    padding: 0 0 16px 0;
-
 
2345
    margin-bottom: 10px;
-
 
2346
 
-
 
2347
    h3 {
-
 
2348
        padding: 0;
-
 
2349
        font-size: 16px;
-
 
2350
        color: #000000;
-
 
2351
        font-weight: 400;
-
 
2352
    }
-
 
2353
 
-
 
2354
    a {
-
 
2355
        font-size: 14px;
-
 
2356
        color: #666666;
-
 
2357
    }
-
 
2358
 
-
 
2359
    .dropdown a {
-
 
2360
        color: #666666;
-
 
2361
    }
-
 
2362
}
-
 
2363
 
-
 
2364
 
-
 
2365
 
-
 
2366
.filter-dd {
-
 
2367
    float: left;
-
 
2368
    width: 100%;
-
 
2369
    margin-bottom: 15px;
-
 
2370
}
-
 
2371
 
-
 
2372
.filter-dd form {
-
 
2373
    float: left;
-
 
2374
    width: 100%;
-
 
2375
    position: relative;
-
 
2376
}
-
 
2377
 
-
 
2378
.filter-dd form input,
-
 
2379
.filter-dd form select {
-
 
2380
    width: 100%;
-
 
2381
    height: 30px;
-
 
2382
    background-color: #f2f2f2;
-
 
2383
    padding: 0 10px;
-
 
2384
    color: #b2b2b2;
-
 
2385
    font-size: 12px;
-
 
2386
    font-weight: 600;
-
 
2387
    border: 0;
-
 
2388
    border: 1px solid #e5e5e5;
-
 
2389
}
-
 
2390
 
-
 
2391
.job-tp i {
-
 
2392
    color: #666666;
-
 
2393
    position: absolute;
-
 
2394
    top: 9px;
-
 
2395
    right: 15px;
-
 
2396
    font-size: 14px;
-
 
2397
}
-
 
2398
 
-
 
2399
.avail-checks {
-
 
2400
    width: 100%;
-
 
2401
    padding: 1rem;
-
 
2402
 
-
 
2403
    input[type="radio"] {
-
 
2404
        display: none;
-
 
2405
    }
-
 
2406
 
-
 
2407
    input[type="radio"]+label span {
-
 
2408
        display: inline-block;
-
 
2409
        width: 15px;
-
 
2410
        height: 15px;
-
 
2411
        position: relative;
-
 
2412
        margin-top: 3px;
-
 
2413
        border: 1px solid #d2d2d2;
-
 
2414
        border-radius: 100px;
-
 
2415
    }
-
 
2416
 
-
 
2417
    input[type="radio"]+label span:before {
-
 
2418
        content: "";
-
 
2419
        opacity: 0;
-
 
2420
        visibility: hidden;
-
 
2421
        position: absolute;
-
 
2422
        width: 7px;
-
 
2423
        height: 7px;
-
 
2424
        border-radius: 100px;
-
 
2425
        background-color: #e44d3a;
-
 
2426
        top: 3px;
-
 
2427
        left: 3px;
-
 
2428
    }
-
 
2429
 
-
 
2430
    input[type="radio"]:checked+label span:before {
-
 
2431
        opacity: 1;
-
 
2432
        visibility: visible;
-
 
2433
    }
-
 
2434
 
-
 
2435
    small {
-
 
2436
        color: #909090;
-
 
2437
        font-size: 14px;
-
 
2438
        padding-left: 10px;
-
 
2439
        font-weight: 500;
-
 
2440
    }
-
 
2441
 
-
 
2442
    ul {
-
 
2443
        display: flex;
-
 
2444
        flex-direction: column;
-
 
2445
        gap: .5rem;
-
 
2446
    }
-
 
2447
}
-
 
2448
 
-
 
2449
 
-
 
2450
 
2304
 
Línea 2451... Línea 2305...
2451
/* =========== Range Slider ========== */
2305
/* =========== Range Slider ========== */
2452
 
2306
 
2453
.rg-slider {
2307
.rg-slider {