Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5406 Rev 5446
Línea 2531... Línea 2531...
2531
 
2531
 
2532
.product-feed-tab.current {
2532
.product-feed-tab.current {
2533
    display: block;
2533
    display: block;
Línea 2534... Línea -...
2534
}
-
 
2535
 
-
 
2536
// Daily pulse
-
 
2537
 
-
 
2538
.daily_pulse-widget {
-
 
2539
    background: $bg-color;
-
 
2540
    box-shadow: $light-shadow;
-
 
2541
    border-radius: $border-radius;
-
 
2542
    border: 1px solid $border-primary;
-
 
2543
    flex-direction: column;
-
 
2544
    display: flex;
-
 
2545
    height: fit-content;
-
 
2546
    padding: 1rem 0.5rem;
-
 
2547
    gap: .5rem;
-
 
2548
 
-
 
2549
    h3 {
-
 
2550
        color: $title-color;
-
 
2551
        font-weight: 700;
-
 
2552
        font-size: 1.1rem;
-
 
2553
    }
-
 
2554
 
-
 
2555
    span {
-
 
2556
        color: $subtitle-color;
-
 
2557
        font-weight: 600;
-
 
2558
    }
-
 
2559
}
-
 
2560
 
-
 
2561
.daily_pulse-quest {
-
 
2562
    align-items: center;
-
 
2563
    display: flex;
-
 
2564
    flex-direction: column;
-
 
2565
    gap: .5rem;
-
 
2566
 
-
 
2567
    h4 {
-
 
2568
        font-weight: 600;
-
 
2569
        color: $title-color;
-
 
2570
    }
-
 
2571
 
-
 
2572
    ul {
-
 
2573
        display: flex;
-
 
2574
        gap: .5rem;
-
 
2575
 
-
 
2576
        li {
-
 
2577
            transition: all 300ms;
-
 
2578
 
-
 
2579
            &:hover {
-
 
2580
                transform: translateY(-10px);
-
 
2581
            }
-
 
2582
        }
-
 
2583
 
-
 
2584
        img {
-
 
2585
            width: 32px;
-
 
2586
            height: 32px;
-
 
2587
            border-radius: 50%;
-
 
2588
        }
-
 
2589
    }
-
 
2590
}
2534
}
Línea 2591... Línea -...
2591
 
-
 
2592
/* ==================== portfolio-gallery-sec ==================== */
-
 
2593
 
-
 
2594
.portfolio-gallery-sec {
-
 
2595
    float: left;
-
 
2596
    width: 100%;
-
 
2597
    background-color: #fff;
-
 
2598
    padding: 30px 20px;
-
 
2599
    border-left: 1px solid #e4e4e4;
-
 
2600
    border-right: 1px solid #e4e4e4;
-
 
2601
    border-bottom: 1px solid #e4e4e4;
-
 
2602
}
-
 
2603
 
-
 
2604
.portfolio-gallery-sec h3 {
-
 
2605
    font-weight: 600;
-
 
2606
    font-size: 18px;
-
 
2607
    margin-bottom: 32px;
-
 
2608
    padding-left: 5px;
-
 
2609
    float: left;
-
 
2610
}
-
 
2611
 
-
 
2612
.portfolio-btn {
-
 
2613
    float: right;
-
 
2614
}
-
 
2615
 
-
 
2616
.portfolio-btn a {
-
 
2617
    display: inline-block;
-
 
2618
    color: #e44d3a;
-
 
2619
    font-size: 16px;
-
 
2620
    font-weight: 600;
-
 
2621
}
-
 
2622
 
-
 
2623
.portfolio-btn a i {
-
 
2624
    margin-right: 5px;
-
 
2625
}
-
 
2626
 
-
 
2627
.gallery_pf {
-
 
2628
    float: left;
-
 
2629
    width: 100%;
-
 
2630
    margin-bottom: -5px;
-
 
2631
}
-
 
2632
 
-
 
2633
.gallery_pf .col-lg-4 {
-
 
2634
    padding: 5px;
-
 
2635
}
-
 
2636
 
-
 
2637
.gallery_pt {
-
 
2638
    float: left;
-
 
2639
    width: 100%;
-
 
2640
    position: relative;
-
 
2641
    overflow: hidden;
-
 
2642
}
-
 
2643
 
-
 
2644
.gallery_pt:hover:before {
-
 
2645
    opacity: 1;
-
 
2646
    visibility: visible;
-
 
2647
    height: 100%;
-
 
2648
}
-
 
2649
 
-
 
2650
.gallery_pt:before {
-
 
2651
    content: "";
-
 
2652
    position: absolute;
-
 
2653
    top: 0;
-
 
2654
    left: 0;
-
 
2655
    width: 100%;
-
 
2656
    height: 0;
-
 
2657
    background-color: rgba(0, 0, 0, 0.6);
-
 
2658
    opacity: 0;
-
 
2659
    visibility: hidden;
-
 
2660
}
-
 
2661
 
-
 
2662
.gallery_pt img {
-
 
2663
    width: 100%;
-
 
2664
    height: 134px;
-
 
2665
    object-fit: cover;
2535
 
2666
}
2536
/* ==================== portfolio-gallery-sec ==================== */
2667
 
2537
 
Línea 2668... Línea -...
2668
.row {
-
 
2669
    margin: 0;
-
 
2670
}
-
 
2671
 
-
 
2672
.gallery_pt>a {
-
 
2673
    position: absolute;
-
 
2674
    top: 100%;
-
 
2675
    left: 0;
-
 
2676
    float: left;
-
 
2677
    width: 100%;
-
 
2678
    text-align: center;
-
 
2679
    -webkit-transform: translateY(-50%);
-
 
2680
    -moz-transform: translateY(-50%);
-
 
2681
    -ms-transform: translateY(-50%);
-
 
2682
    -o-transform: translateY(-50%);
-
 
2683
    transform: translateY(-50%);
-
 
2684
    opacity: 0;
-
 
2685
    visibility: hidden;
-
 
2686
}
-
 
2687
 
-
 
2688
.gallery_pt:hover>a {
-
 
2689
    opacity: 1;
-
 
2690
    visibility: visible;
-
 
2691
    top: 50%;
-
 
2692
}
-
 
2693
 
-
 
2694
.gallery_pt>a img {
-
 
2695
    float: none;
-
 
2696
    width: auto;
2538
.row {
Línea 2697... Línea -...
2697
    height: auto;
-
 
2698
}
-
 
2699
 
-
 
2700
/* ============== overview-box ============= */
-
 
2701
 
-
 
2702
.overview-box {
-
 
2703
    width: 570px;
-
 
2704
    position: fixed;
-
 
2705
    top: 50%;
-
 
2706
    left: 50%;
-
 
2707
    -webkit-transform: translateX(-50%) translateY(-50%);
-
 
2708
    -moz-transform: translateX(-50%) translateY(-50%);
-
 
2709
    -ms-transform: translateX(-50%) translateY(-50%);
-
 
2710
    -o-transform: translateX(-50%) translateY(-50%);
-
 
2711
    transform: translateX(-50%) translateY(-50%);
-
 
2712
    opacity: 0;
2539
    margin: 0;
2713
    visibility: hidden;
2540
}
2714
    z-index: 0;
2541
 
2715
}
2542
/* ============== overview-box ============= */
2716
 
2543
 
Línea 2723... Línea 2550...
2723
    text-align: center;
2550
    text-align: center;
2724
    width: 22px;
2551
    width: 22px;
2725
    height: 22px;
2552
    height: 22px;
2726
    line-height: 22px;
2553
    line-height: 22px;
2727
    border: 1px solid #fff;
2554
    border: 1px solid #fff;
2728
    -webkit-border-radius: 100px;
-
 
2729
    -moz-border-radius: 100px;
-
 
2730
    -ms-border-radius: 100px;
-
 
2731
    -o-border-radius: 100px;
-
 
2732
    border-radius: 100px;
2555
    border-radius: 100px;
2733
    font-weight: 600;
2556
    font-weight: 600;
2734
}
2557
}
Línea 2735... Línea 2558...
2735
 
2558
 
2736
.close-box:hover {
2559
.close-box:hover {
2737
    color: #fff;
2560
    color: #fff;
Línea 2738... Línea -...
2738
}
-
 
2739
 
-
 
2740
.overview-box.open {
-
 
2741
    opacity: 1;
-
 
2742
    visibility: visible;
-
 
2743
    z-index: 99999;
-
 
2744
}
-
 
2745
 
-
 
2746
.overview-edit {
-
 
2747
    float: left;
-
 
2748
    width: 100%;
-
 
2749
    background-color: #fff;
-
 
2750
    padding: 30px 20px;
-
 
2751
}
-
 
2752
 
-
 
2753
.overview-edit h3 {
-
 
2754
    color: #000000;
-
 
2755
    font-size: 18px;
-
 
2756
    font-weight: 600;
-
 
2757
    float: left;
-
 
2758
    width: 100%;
-
 
2759
    margin-bottom: 25px;
-
 
2760
}
-
 
2761
 
-
 
2762
.overview-edit span {
-
 
2763
    color: #b2b2b2;
-
 
2764
    font-size: 12px;
-
 
2765
    float: right;
-
 
2766
    margin-bottom: 5px;
-
 
2767
}
-
 
2768
 
-
 
2769
.overview-edit form {
-
 
2770
    float: left;
-
 
2771
    width: 100%;
-
 
2772
}
-
 
2773
 
-
 
2774
.overview-edit form input {
-
 
2775
    height: 40px;
-
 
2776
    padding-left: 15px;
-
 
2777
    margin-bottom: 20px;
-
 
2778
}
-
 
2779
 
-
 
2780
.overview-edit form textarea,
-
 
2781
.overview-edit form input,
-
 
2782
.overview-edit form select {
-
 
2783
    width: 100%;
-
 
2784
    border: 1px solid #e5e5e5;
-
 
2785
    resize: none;
-
 
2786
    color: #b2b2b2;
-
 
2787
    font-size: 14px;
-
 
2788
}
-
 
2789
 
-
 
2790
.overview-edit form select {
-
 
2791
    line-height: 40px;
-
 
2792
    padding-left: 40px;
-
 
2793
    margin-bottom: 20px;
-
 
2794
}
-
 
2795
 
-
 
2796
.overview-edit form textarea {
-
 
2797
    height: 160px;
-
 
2798
    margin-bottom: 30px;
-
 
2799
    padding: 15px;
-
 
2800
}
2561
}
2801
 
2562
 
2802
.save {
2563
.save {
2803
    background-color: #e44d3a;
2564
    background-color: #e44d3a;
2804
    color: #fff;
2565
    color: #fff;
Línea 2808... Línea 2569...
2808
.save-add {
2569
.save-add {
2809
    background-color: #fff;
2570
    background-color: #fff;
2810
    padding: 13px 13px !important;
2571
    padding: 13px 13px !important;
2811
}
2572
}
Línea 2812... Línea -...
2812
 
-
 
2813
.overview-edit button {
-
 
2814
    float: left;
-
 
2815
    border: 1px solid #e5e5e5;
-
 
2816
    font-weight: 600;
-
 
2817
    font-size: 16px;
-
 
2818
    padding: 13px 34px;
-
 
2819
    margin-right: 20px;
-
 
2820
    outline: none;
-
 
2821
    cursor: pointer;
-
 
2822
}
-
 
2823
 
2573
 
2824
.cancel {
2574
.cancel {
2825
    background-color: #fff;
2575
    background-color: #fff;
2826
    color: #000;
2576
    color: #000;
Línea 2850... Línea 2600...
2850
        font-size: 18px;
2600
        font-size: 18px;
2851
        color: #b2b2b2;
2601
        color: #b2b2b2;
2852
    }
2602
    }
2853
}
2603
}
Línea 2854... Línea -...
2854
 
-
 
2855
#location-box .datefm i {
-
 
2856
    right: auto;
-
 
2857
    left: 15px;
-
 
2858
}
-
 
2859
 
-
 
2860
#location-box .datefm input {
-
 
2861
    padding-left: 40px;
-
 
2862
}
-
 
2863
 
-
 
2864
#skills-box ul {
-
 
2865
    float: left;
-
 
2866
    width: 100%;
-
 
2867
    margin-bottom: 20px;
-
 
2868
}
-
 
2869
 
-
 
2870
#skills-box ul li {
-
 
2871
    display: inline-block;
-
 
2872
    margin-right: 10px;
-
 
2873
    position: relative;
-
 
2874
}
-
 
2875
 
-
 
2876
.skl-name {
-
 
2877
    display: inline-block;
-
 
2878
    color: #b2b2b2;
-
 
2879
    font-size: 14px;
-
 
2880
    font-weight: 500;
-
 
2881
    background-color: #e5e5e5;
-
 
2882
    -webkit-border-radius: 30px;
-
 
2883
    -moz-border-radius: 30px;
-
 
2884
    -ms-border-radius: 30px;
-
 
2885
    -o-border-radius: 30px;
-
 
2886
    border-radius: 30px;
-
 
2887
    text-transform: uppercase;
-
 
2888
    padding: 10px 30px 10px 12px;
-
 
2889
    position: relative;
-
 
2890
}
-
 
2891
 
2604
 
2892
.close-skl {
2605
.close-skl {
2893
    position: absolute;
2606
    position: absolute;
2894
    top: 10px;
2607
    top: 10px;
2895
    right: 10px;
2608
    right: 10px;