Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5568 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3508 stevensc 1
/*===================== TABLE OF CONTENT ======================= 1.	Header 2.  Nav Hover =============================================================*/
2
@import "./settings/variables.scss";
3
 
4
header {
5
    width: 100%;
5126 stevensc 6
    background-color: $bg-color;
7
    border-bottom: 1px solid $border-primary;
3508 stevensc 8
}
9
 
10
.msg-numbers {
11
    background-color: #1dac98;
12
}
13
 
14
.message-btn a {
15
    margin: 0.5rem 0;
16
}
17
 
18
.sign-in {
19
    background-color: white;
20
}
21
 
22
.sign-control li.current a {
3737 stevensc 23
    background-color: $button-bg-secondary;
3508 stevensc 24
}
25
 
26
.sign-control li a.current {
3737 stevensc 27
    background-color: $button-bg-secondary;
28
    color: $button-text-color-secondary !important;
29
    border: 1px solid $border-primary;
3508 stevensc 30
}
31
 
32
.signup-tab ul li.current a {
33
    background-color: #0961bf;
34
}
35
 
36
.theme-green .back-bar .selected-bar {
37
    background-color: #0961bf;
38
    background-image: linear-gradient(to bottom, #0961bf, #0961bf);
39
}
40
 
41
.theme-green .back-bar .pointer {
42
    background-color: #0961bf;
43
}
44
 
5076 stevensc 45
.sign_link>a {
3508 stevensc 46
    color: #0961bf;
47
}
48
 
5076 stevensc 49
.view-more>a:hover {
3508 stevensc 50
    color: #0961bf;
51
}
52
 
5076 stevensc 53
.view-more>a {
3508 stevensc 54
    color: #0961bf;
55
}
56
 
57
.nav-tabs .nav-item.show .nav-link,
58
.nav-tabs .nav-link.active {
59
    color: #0961bf;
60
}
61
 
62
.tab-feed ul li.active span {
63
    color: #0961bf;
64
}
65
 
66
.msg-notifc {
67
    background-color: #0961bf;
68
}
69
 
70
.msg-status {
71
    background-color: #0961bf;
72
}
73
 
74
.select-with-icon {
75
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
76
    background-repeat: no-repeat;
77
    background-position-x: 100%;
78
    background-position-y: 5px;
79
}
80
 
4329 stevensc 81
.msgs_icons-container {
3508 stevensc 82
    display: flex;
4773 stevensc 83
    flex-direction: column;
4779 stevensc 84
    gap: 0.5rem;
3508 stevensc 85
}
86
 
87
.messages-sec .icon {
88
    cursor: pointer;
89
    height: 30px;
90
    display: grid;
91
    place-items: center;
92
    width: 30px;
93
    border-radius: 50px;
94
    padding: 0;
95
    transition: all 0.2s;
96
    color: #0860bf;
97
 
5126 stevensc 98
    &:hover {
99
        background-color: #efefef;
100
    }
3508 stevensc 101
}
102
 
5076 stevensc 103
.messages-list>.messages_conversation-search {
3508 stevensc 104
    transition: all 0.2s;
105
    padding: 10px 20px;
106
    position: relative;
107
    overflow: hidden;
108
 
5126 stevensc 109
    input {
110
        outline: none;
111
        box-shadow: none;
112
        border: 1px solid #e6e6e6;
113
    }
3508 stevensc 114
 
5126 stevensc 115
    &.hide {
116
        height: 0;
117
        padding: 0;
118
    }
3508 stevensc 119
}
120
 
121
.message-bar-head .usr-msg-details {
122
    display: flex;
123
    align-items: center;
124
}
125
 
126
.message-select-conversation {
127
    display: grid;
128
    place-items: center;
129
    width: 100%;
4345 stevensc 130
    height: 100%;
3508 stevensc 131
    min-height: 300px;
5076 stevensc 132
 
4345 stevensc 133
    .msgs-select-container {
134
        display: flex;
135
        flex-direction: column;
136
        align-items: center;
137
        gap: 0.5rem;
5076 stevensc 138
 
4345 stevensc 139
        .icon {
140
            font-size: 2.5rem;
5076 stevensc 141
 
4345 stevensc 142
            &:hover {
143
                background-color: #0000;
144
            }
145
        }
146
    }
3508 stevensc 147
}
148
 
149
@media (min-width: 1200px) {
150
    .msgs-container {
151
        max-width: 1000px;
152
    }
153
}
154
 
155
.main-conversation-box .message-bar-head .usr-msg-details .icon {
156
    display: none;
157
}
158
 
159
.msgs-hide {
160
    font-size: 1.2rem;
161
    color: var(--gray);
162
}
163
 
164
@media (max-width: 992px) {
165
    .main-conversation-box .message-bar-head .usr-msg-details .icon {
166
        display: grid;
167
    }
168
}
169
 
170
@media (max-width: 992px) {
171
    .msgs-hide {
172
        display: none;
173
    }
174
}
175
 
4373 stevensc 176
.icon-hide {
177
    display: flex;
178
    align-items: center;
179
    gap: 0.5rem;
180
    padding-top: 0.5rem;
181
    font-size: 1.2rem;
182
    cursor: pointer;
5076 stevensc 183
 
4373 stevensc 184
    &,
185
    span {
186
        color: $icons-color;
187
    }
5076 stevensc 188
 
4373 stevensc 189
    @media (min-width: 992px) {
3508 stevensc 190
        display: none !important;
191
    }
192
}
193
 
194
#shared_with {
195
    font-size: 16px;
196
    display: inline-block;
197
    height: 40px;
198
    padding: 0 15px;
199
    line-height: 40px;
200
    font-weight: 500;
201
}
202
 
5076 stevensc 203
#shared_with>option {
3508 stevensc 204
    font-size: 1.2rem;
205
    display: inline-block;
206
    height: 40px;
207
    padding: 0 15px;
208
    line-height: 40px;
209
    font-weight: 500;
210
}
211
 
212
.flww {
213
    background-color: #0961bf;
214
}
215
 
216
.tab-feed ul li.active span {
217
    color: #1dac98;
218
}
219
 
5076 stevensc 220
.add-pic-box [type="file"]+label {
3508 stevensc 221
    border: 2px solid #0961bf;
222
    color: #0961bf;
223
}
224
 
5076 stevensc 225
.add-pic-box [type="file"]+label:hover {
3508 stevensc 226
    background: #0961bf;
227
}
228
 
229
.user-pro-img .add-dp {
230
    left: 34%;
231
}
232
 
233
/****estilos del feed***/
234
.img-sm {
235
    width: 46px;
236
    height: 46px;
237
}
238
 
239
.panel .panel-footer,
5076 stevensc 240
.panel> :last-child {
3508 stevensc 241
    border-bottom-left-radius: 0;
242
    border-bottom-right-radius: 0;
243
}
244
 
245
.media-block .media-left {
246
    display: block;
247
    float: left;
248
}
249
 
250
.media-block .media-right {
251
    float: right;
252
}
253
 
254
.media-block .media-body {
255
    display: block;
256
    overflow: hidden;
257
    width: auto;
258
}
259
 
260
.middle .media-left,
261
.middle .media-right,
262
.middle .media-body {
263
    vertical-align: middle;
264
}
265
 
266
.thumbnail {
267
    border-radius: 0;
268
    border-color: #e9e9e9;
269
}
270
 
271
.tag.tag-sm,
5076 stevensc 272
.btn-group-sm>.tag {
3508 stevensc 273
    padding: 5px 10px;
274
}
275
 
276
.tag:not(.label) {
277
    background-color: #fff;
278
    padding: 6px 12px;
279
    border-radius: 2px;
280
    border: 1px solid #cdd6e1;
281
    font-size: 12px;
282
    line-height: 1.42857;
283
    vertical-align: middle;
284
    -webkit-transition: all 0.15s;
285
    transition: all 0.15s;
286
}
287
 
288
.text-muted,
289
a.text-muted:hover,
290
a.text-muted:focus {
291
    color: #acacac;
292
}
293
 
294
.text-sm {
295
    font-size: 0.9em;
296
}
297
 
298
.text-5x,
299
.text-4x,
300
.text-5x,
301
.text-2x,
302
.text-lg,
303
.text-sm,
304
.text-xs {
305
    line-height: 1.25;
306
}
307
 
308
.btn-trans {
309
    background-color: transparent;
310
    border-color: transparent;
311
    color: #929292;
312
}
313
 
314
.btn-icon {
315
    padding-left: 9px;
316
    padding-right: 9px;
317
}
318
 
319
.btn-sm,
5076 stevensc 320
.btn-group-sm>.btn,
3508 stevensc 321
.btn-icon.btn-sm {
322
    padding: 5px 10px !important;
323
}
324
 
325
.save {
326
    background-color: #0961bf;
327
}
328
 
329
.place-bid-btn {
330
    background-color: #0961bf !important;
331
}
332
 
333
.sn-field-has-error {
334
    border: 1px solid red;
335
    margin-bottom: 5px;
336
}
337
 
338
.sn-field-invalid-feedback {
339
    color: red;
340
    font-size: 13px;
341
    line-height: 20px;
342
    margin-bottom: 5px;
343
}
344
 
345
.form-group {
346
    margin-bottom: 5px;
347
    margin-top: 5px;
348
}
349
 
350
.form-group-has-error {
351
    border: 1px solid red !important;
352
}
353
 
354
.form-group-invalid-feedback {
355
    color: red;
356
    font-size: 13px;
357
    line-height: 20px;
358
    margin-bottom: 5px;
359
}
360
 
5076 stevensc 361
.fgt-sec input[type="checkbox"]+label span:before {
3508 stevensc 362
    background-color: #0961bf;
363
}
364
 
365
.info-page {
366
    padding: 50px 0;
367
}
368
 
369
.section_admin_title_buttons {
370
    width: 100%;
371
    display: flex;
372
    margin-left: 0;
373
    justify-content: space-between;
374
    align-items: center;
375
}
376
 
377
.market_admin_title_buttons {
5303 stevensc 378
    width: 100%;
3508 stevensc 379
    display: flex;
3987 stevensc 380
    gap: 0.5rem;
5304 stevensc 381
    flex-direction: column-reverse;
5300 stevensc 382
 
383
    .search_input,
384
    .search_categories {
385
        position: relative;
386
        margin-bottom: 0;
387
 
388
        input,
389
        select,
390
        input:focus {
391
            background-color: $bg-color;
5303 stevensc 392
            border-radius: 5rem;
5300 stevensc 393
 
394
            &::placeholder {
395
                color: $font-color;
396
            }
397
        }
398
    }
3508 stevensc 399
}
400
 
401
.search-btn {
5304 stevensc 402
    padding: 0 .8rem;
3508 stevensc 403
    right: 0;
404
    height: 100%;
5303 stevensc 405
    background: $button-bg;
3508 stevensc 406
    position: absolute;
407
    top: 0;
5303 stevensc 408
    color: $button-text-color;
3508 stevensc 409
    font-weight: 600;
5303 stevensc 410
    border-start-end-radius: 5rem;
411
    border-bottom-right-radius: 5rem;
412
    opacity: .8;
413
    transition: all 200ms;
414
 
5304 stevensc 415
    &:hover,
416
    &:active {
5303 stevensc 417
        opacity: 1;
418
    }
3508 stevensc 419
}
420
 
421
.section_admin_title_buttons h1.title,
422
.section_admin_title_buttons h2 {
3523 stevensc 423
    color: $title-color;
3508 stevensc 424
    font-weight: bold;
425
    font-size: 18px;
426
}
427
 
428
.section_admin_title_buttons h2 {
429
    cursor: pointer;
430
}
431
 
432
@media (min-width: 768px) {
433
    .section_admin_title_buttons {
434
        width: 50%;
435
        margin-left: auto;
436
    }
437
 
438
    .market_admin_title_buttons {
5305 stevensc 439
        align-items: center;
3508 stevensc 440
        flex-direction: row;
5305 stevensc 441
        justify-content: end;
3508 stevensc 442
    }
443
 
444
}
445
 
446
.section_admin_form {
447
    float: left;
448
    width: 100%;
449
    padding-left: 15px;
450
}
451
 
452
.section_admin_form form input,
453
.section_admin_form form select {
454
    width: 100%;
455
    padding: 0 15px 0 15px;
456
    color: #000000;
457
    font-size: 14px;
458
    border: 1px solid #e5e5e5;
459
    height: 40px;
460
}
461
 
462
.section_admin_form form textarea {
463
    width: 100%;
464
    padding: 10px 15px 0 15px;
465
    color: #000000;
466
    font-size: 14px;
467
    border: 1px solid #e5e5e5;
468
    height: 300px;
469
}
470
 
471
/* .section_admin_form form button {color: #ffffff; font-size: 16px; background-color: #0961bf; padding: 12px 27px; border: 0; font-weight: 500; margin-top: 30px; cursor: pointer; }*/
472
.section_admin_form .form-group label {
473
    color: #666 !important;
474
    font-weight: 400;
475
    font-size: 14px;
476
    padding-bottom: 5px;
477
}
478
 
479
.section_admin_form .form-group .toggle-group label {
480
    color: #fff !important;
481
    font-weight: 400;
482
    font-size: 16px;
483
    padding-bottom: 5px;
484
}
485
 
486
.section_admin_form .form-group .toggle-group label.toggle-off {
487
    background-color: #808080;
488
    border-color: #808080;
489
}
490
 
491
.section_admin_form .form-group .toggle-group label.toggle-off:hover {
492
    background-color: #808080;
493
    border-color: #808080;
494
}
495
 
496
.select2-results__option {
497
    display: block;
498
    padding: 10px 15px 0 15px !important;
499
    overflow: hidden;
500
    text-overflow: ellipsis;
501
    white-space: nowrap;
502
    font-size: 14px;
503
    border: 1px solid #e5e5e5;
504
    height: 40px;
505
}
506
 
507
.text-vertical-middle {
508
    vertical-align: middle !important;
509
}
510
 
511
table.dataTable thead .sorting:before,
512
table.dataTable thead .sorting_asc:before,
513
table.dataTable thead .sorting_desc:before,
514
table.dataTable thead .sorting_asc_disabled:before,
515
table.dataTable thead .sorting_desc_disabled:before {
516
    right: 1em;
517
    /* content: "\2191";*/
518
    content: none !important;
519
}
520
 
521
table.dataTable thead .sorting:after,
522
table.dataTable thead .sorting_asc:after,
523
table.dataTable thead .sorting_desc:after,
524
table.dataTable thead .sorting_asc_disabled:after,
525
table.dataTable thead .sorting_desc_disabled:after {
526
    right: 0.5em;
527
    /*content: "\2193";*/
528
    content: none !important;
529
}
530
 
531
.btn-edit {
532
    display: inline-block;
533
    padding: 0 12px;
534
    color: #fff;
535
    height: 35px;
536
    line-height: 35px;
537
    background-color: #0961bf;
538
}
539
 
540
.btn-delete {
541
    display: inline-block;
542
    padding: 0 12px;
543
    color: #fff;
544
    height: 35px;
545
    line-height: 35px;
546
    background-color: #e44d3a;
547
}
548
 
549
.overview-box.open {
550
    z-index: 1000 !important;
551
}
552
 
553
.datepicky {
554
    float: none;
555
}
556
 
557
.datefm {
558
    float: none;
559
}
560
 
561
span.group-span-filestyle {
562
    border: 1px solid #aaa;
563
    color: #fff;
564
    background-color: #0961bf;
565
    margin-top: 10px;
566
}
567
 
568
span.group-span-filestyle:hover {
569
    color: #fff;
570
    background-color: #0961bf;
571
}
572
 
573
.pac-container {
574
    z-index: 1051 !important;
575
}
576
 
577
.custom-file-label:after {
578
    content: none;
579
}
580
 
581
.add-pic-box a {
582
    background: #fff;
583
    border: 2px solid #0961bf;
584
    border-radius: 3px;
585
    color: #0961bf;
586
    cursor: pointer;
587
    display: inline-block;
588
    font-size: 15px;
589
    font-weight: 600;
590
    outline: none;
591
    padding: 12px 20px;
592
    position: relative;
593
    transition: all 0.3s;
594
    vertical-align: middle;
595
    margin: 0;
596
    text-transform: uppercase;
597
}
598
 
599
#skills-box ul {
600
    height: auto;
601
}
602
 
5076 stevensc 603
.custom-control-input:checked~.custom-control-label::before {
3508 stevensc 604
    color: #fff;
605
    border-color: #007bff;
606
    background-color: #007bff;
607
    box-shadow: none;
608
    outline: none;
609
}
610
 
611
#user-img-change {
612
    width: 150px;
613
    height: 150px;
614
    margin-right: 10px;
615
    -webkit-border-radius: 100px;
616
    -moz-border-radius: 100px;
617
    -ms-border-radius: 100px;
618
    -o-border-radius: 100px;
619
    border-radius: 100px;
3589 stevensc 620
    background-color: #fff;
3508 stevensc 621
}
622
 
623
.btn-onroom {
624
    cursor: pointer;
625
}
626
 
627
.form-group .toggle-btn .custom-control-label {
628
    position: relative;
629
    padding-left: 50px;
630
}
631
 
632
.file-upload-indicator {
633
    display: none;
634
}
635
 
636
b,
637
strong {
638
    font-weight: bolder !important;
639
}
640
 
641
a.read-more {
642
    color: #666666;
643
    font-weight: bold;
644
}
645
 
646
a.read-morea:visited {
647
    color: #666666;
648
    font-weight: bold;
649
}
650
 
651
.show-read-more p {
652
    text-align: justify;
653
    font-weight: 600;
3551 stevensc 654
    color: $subtitle-color;
5076 stevensc 655
 
3987 stevensc 656
    .more-text {
657
        display: none;
658
    }
3508 stevensc 659
}
660
 
661
.btn-trans:hover {
662
    color: #929292 !important;
663
}
664
 
5076 stevensc 665
.job-status-bar>a:hover {
3508 stevensc 666
    color: #1e5591 !important;
667
}
668
 
5076 stevensc 669
.job-status-bar>ul>li>a:hover {
3508 stevensc 670
    color: #1e5591;
671
}
672
 
673
.comment-section {
674
    box-shadow: none;
675
}
676
 
677
.process-comm {
678
    padding-top: 10px;
679
    padding-bottom: 20px;
680
}
681
 
682
nav ul li a {
683
    color: #000000;
684
}
685
 
686
.usy-name h4 {
687
    color: #000000;
688
    font-size: 16px;
689
    text-transform: capitalize;
690
    font-weight: 600;
691
    margin-bottom: 5px;
692
    margin-top: 2px;
693
}
694
 
695
.message-btn a.btn-request-connection {
696
    background-color: #53d690;
697
}
698
 
699
.message-btn a.btn-cancel-connection {
700
    background-color: #e44d3a;
701
}
702
 
703
.message-btn a.btn-send-message {
704
    background-color: #51a5fb;
705
}
706
 
707
.bootbox-confirm .btn-danger {
708
    color: #000000;
709
}
710
 
711
.title-bar {
712
    float: left;
713
    width: 280px;
714
    margin-top: 12px;
715
    margin-bottom: 9px;
716
    vertical-align: middle;
717
}
718
 
719
.title-bar .title {
720
    color: #ffffff;
721
    font-size: 20px;
722
    text-transform: capitalize;
723
    font-weight: 600;
724
}
725
 
726
/*New Style*/
727
.online-btn {
728
    border-radius: 50px;
729
    width: 20px;
730
    height: 20px;
731
}
732
 
733
/***********************************new style jm*********************************/
734
.forum-links ul li.active a {
735
    color: #1dac98;
736
}
737
 
738
.forum-links ul li.active {
739
    border-color: #1dac98;
740
}
741
 
742
.ask-question {
743
    color: #0961bf !important;
744
}
745
 
5076 stevensc 746
.suggestion-usd>span i:hover {
3508 stevensc 747
    background-color: #f4e6a6;
748
}
749
 
5076 stevensc 750
.view-more>.btn {
3508 stevensc 751
    background-color: #0961bf;
752
}
753
 
754
/* #shared_with {background-color: #0961bf; } #shared_with :hover {color: blank; background-color: #007bff; } */
755
.bid_now {
756
    background-color: #0961bf;
757
}
758
 
759
.follow {
760
    background-color: #1eb89e;
761
}
762
 
763
.footy-sec.mn ul li a {
764
    color: #01245d;
765
    font-size: 0.9rem;
766
}
767
 
768
.footy-sec.mn ul li a:hover {
769
    color: #01245d;
770
    font-weight: bold;
771
    transition: all 0.5s;
772
}
773
 
774
.footy-sec.mn p {
775
    color: #01245d;
776
}
777
 
778
.star-descp ul li i {
779
    color: #cacf8c;
780
}
781
 
782
.hire-us {
783
    background-color: #0961bf;
784
}
785
 
786
.company-up-info {
787
    background-color: #ffff;
788
}
789
 
790
.post_with_border {
791
    border-left: 4px solid #1eb89e;
792
}
793
 
794
.sign_link {
795
    background-color: #ffff;
796
}
797
 
798
.search-title {
799
    padding-left: 2%;
800
    font-size: 1.2rem;
801
}
802
 
803
.portfolio-gallery-sec {
804
    background-color: #f5f5f7;
805
}
806
 
807
.filter-dd form input,
808
.filter-dd form select {
809
    background-color: #fff;
810
}
811
 
812
.feed-comment-container {
813
    margin-top: 1rem;
814
}
815
 
816
.pagination li .page-link {
817
    color: #0961bf;
818
}
819
 
820
.comment-section {
821
    background-color: #f5f5f7;
822
}
823
 
824
.company_profile_info {
825
    border-radius: 5px;
826
}
827
 
828
.full-width {
829
    border-radius: 5px;
830
    box-shadow: 0px 0px 11px 0px rgb(0 0 0 / 5%);
831
}
832
 
833
.tab-feed.st2 ul li :hover {
834
    border-bottom: 3px solid #f4e6a6;
835
}
836
 
837
.border-none {
838
    border: none !important;
839
}
840
 
5076 stevensc 841
.usr-pic>img {
3508 stevensc 842
    width: 80%;
843
}
844
 
845
.user-specs {
846
    padding: 39px 0 10px 0;
847
}
848
 
849
.job-status-bar {
850
    /* background-image: linear-gradient(#f5f5f7, #ffff); */
851
    display: flex;
852
    justify-content: space-between;
853
    align-items: center;
854
    /* border-radius: 10px; */
855
}
856
 
857
.message-bar-head {
858
    display: flex;
859
    height: 13vh;
860
    justify-content: space-between;
861
    padding: 20px;
862
    width: 100%;
863
}
864
 
865
.form-control:disabled,
866
.form-control[readonly] {
867
    background-color: #ffff;
868
}
869
 
870
.file-caption.icon-visible .file-caption-name {
871
    padding-bottom: 15px;
872
}
873
 
874
/**notificaciones**/
875
.notification {
876
    color: white;
877
    text-decoration: none;
878
    padding: 0px 10px;
879
    position: relative;
880
    display: inline-block;
881
    border-radius: 2px;
882
    font-size: 16px;
883
}
884
 
885
.text-submenu {
886
    color: #0961bf;
887
 
5438 stevensc 888
    &:hover {
889
        font-weight: bold;
890
        color: #0961bf;
891
        transition: all 0.5s;
892
    }
3508 stevensc 893
}
894
 
895
.my-company-dropdown.show {
896
    display: block;
897
}
898
 
899
/**estilos altos de las columnas* .right-sidebar {margin-top: -7px; }*/
900
 
901
.message-btn {
902
    display: inherit;
903
    flex-direction: column;
5076 stevensc 904
}