Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
@charset "UTF-8";
2
 
3
:root {
4
    --primary-white: rgba(255, 255, 255, 0.9);
5
    --primary-white-hover: rgba(255, 255, 255, 0.04);
6
    --border-primary: #ffffff14;
7
    --primary-font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;
8
}
9
 
10
h1,
11
h2,
12
h3,
13
h4,
14
h5,
15
h6,
16
span,
17
a,
60 ariadna 18
p ,
19
.comment-message .text,
403 ariadna 20
.comment-message .time
21
.container{
1 efrain 22
    font-family: var(--primary-font-family);
23
}
24
 
25
/* Nav */
26
.rui-topbar-wrapper {
27
    background: #fff;
28
    border-bottom: 1px solid #aeb3b8;
29
    box-shadow: 1px 1px 1px #ddd;
30
    padding: 5px;
31
    height: 55px;
32
 
33
}
34
 
35
/* Drawer */
36
 
589 ariadna 37
@media (max-width: 767.98px) {
38
    .btn-drawer {
39
        left: 15px;
40
        top: 80px;
41
}
42
}
43
 
1 efrain 44
@media (min-width: 1100px){
45
.drawer-left, .drawer-right {
46
    height: calc(100% - 55px);
47
}
48
}
49
 
50
.drawer.drawer-left {
51
    background-color: #23292f;
52
    border-radius: 0;
53
    padding: 0;
54
    top: 55px;
55
}
56
 
57
.drawercontent {
58
    scrollbar-color: #757474 #fff;
59
    margin-right: 0;
60
    scrollbar-width: auto;
61
    padding: 0;
62
    height: calc(100% - 55px);
63
}
64
 
65
.courseindex .courseindex-item.pageitem {
66
    background: black;
67
    color: #fff;
68
    border-left: 5px solid #fff;
69
}
70
 
71
.h5p-iframe-wrapper iframe.h5p-iframe{
72
    max-height: 75vh;
73
    min-height: 400px;
74
}
75
 
76
html.h5p-iframe, html.h5p-iframe > body{
77
    height: fit-content;
78
}
79
 
80
.drawerheader {
81
    border-bottom: 1px solid var(--border-primary);
82
    padding: .9rem !important;
83
    display: flex;
84
    justify-content: space-between;
85
    align-items: center;
86
}
87
 
88
.drawerheadercontent {
89
    position: relative !important;
90
    top: 0 !important;
91
    left: 0 !important;
92
    display: flex;
93
    align-items: center;
94
    justify-content: center;
95
    gap: .5rem;
96
}
97
 
98
.drawer.drawer-left .drawertoggle {
99
    margin-left: auto;
100
    margin-right: 0;
101
    margin-top: 2px;
102
    margin-bottom: 2px;
103
}
104
 
105
.drawerheadercontent h5{
106
    margin-bottom: 0;
107
    font-size: 16px;
108
    font-weight: 600;
109
    color: #fff;
110
    margin-top: 5px;
111
}
112
 
113
.wrapper-fw {
114
    width: calc(100% - 1px);
115
    position: relative;
116
}
117
 
118
.courseindex .courseindex-item.pageitem:hover, .courseindex .courseindex-item.pageitem:focus {
119
    color: #fff;
120
    background: #000;
121
    border-left: 5px solid #fff;
122
}
123
 
124
.courseindex .courseindex-item.pageitem:hover .courseindex-link{
125
    color: #fff;
126
}
127
 
128
#page-mod-resource-view .wrapper-fw, #page-mod-hvp-view .wrapper-fw {
129
    width: 100%;
130
}
131
 
448 ariadna 132
#page-mod-resource-view .drawer-right .drawerheader , #page-mod-hvp-view .drawer-right .drawerheader  {
133
    display: none;
134
}
1 efrain 135
 
136
#page-mod-resource-view .drawer-right .drawercontent , #page-mod-hvp-view .drawer-right .drawercontent  {
137
    width: 100%;
138
}
139
 
140
#block-region-side-pre{
141
    justify-content: center;
142
}
143
 
144
.drawer-right .drawerheader .drawerheadercontent h5{
145
    display: none;
146
}
147
 
148
.courseindex .courseindex-section {
149
    border-radius: 0 !important;
150
    margin-left: 0 !important;
151
    margin-bottom: 0 !important;
152
}
153
 
154
.courseindex .courseindex-item.courseindex-section-title {
155
    flex-direction: row-reverse;
156
    justify-content: space-between;
157
    padding: 0.5rem 0;
158
    border-radius: 0 !important;
159
}
160
 
161
.courseindex .courseindex-section .courseindex-item.courseindex-section-title {
162
    border-bottom: 1px solid var(--border-primary) !important;
163
}
164
 
165
.courseindex .courseindex-item.courseindex-section-title a {
166
    color: var(--primary-white) !important;
167
    font-size: 14px !important;
168
    font-weight: 600;
169
    margin-left: 1rem;
170
}
171
 
172
.courseindex .courseindex-sectioncontent {
173
    padding: 0 !important;
174
}
175
 
176
.courseindex .courseindex-item.pageitem a {
177
    color: #fff;
178
}
179
 
180
 
181
.courseindex .courseindex-section .courseindex-sectioncontent .courseindex-item {
182
    padding: 10.5px;
183
    padding-left: 16px;
184
    border-bottom: 1px solid var(--border-primary);
185
    border-radius: 0;
186
}
187
 
188
.courseindex .courseindex-item:hover span,
189
.courseindex .courseindex-item:hover .courseindex-link,
190
.courseindex .courseindex-item:hover .courseindex-chevron,
191
.courseindex .courseindex-item:focus span,
192
.courseindex .courseindex-item:focus .courseindex-link,
193
.courseindex .courseindex-item:focus .courseindex-chevron {
194
    color: var(--primary-white);
195
}
196
 
197
.courseindex .courseindex-item:hover>span:not(.icons-collapse-expand),
198
.courseindex .courseindex-item:hover>.courseindex-link,
199
.courseindex .courseindex-item:hover>.courseindex-chevron:not(.icons-collapse-expand),
200
.courseindex .courseindex-item:focus>span:not(.icons-collapse-expand),
201
.courseindex .courseindex-item:focus>.courseindex-link,
202
.courseindex .courseindex-item:focus>.courseindex-chevron:not(.icons-collapse-expand) {
203
    text-decoration: underline;
204
}
205
 
206
.courseindex .expanded-icon,
207
.courseindex .collapsed-icon {
208
    background-color: transparent !important;
209
}
210
 
211
.courseindex .expanded-icon .icon,
212
.courseindex .collapsed-icon .icon {
213
    font-size: 20px !important;
214
}
215
 
216
/* Drawer end */
217
 
218
#page-mod-resource-view .rui-main-content-title--h4, #page-mod-hvp-view .rui-main-content-title--h4 {
219
    font-size: 16px;
220
    color: #757474;
221
    font-weight: 600;
222
}
223
 
224
.page-header-content{
225
    margin: 11px 0;
80 ariadna 226
    margin-top: 35px !important;
1 efrain 227
}
228
 
229
#page-mod-resource-view .page-header-content, #page-mod-hvp-view .page-header-content {
230
    background-color: transparent;
231
    position: absolute;
232
    top: 0;
233
    left: 0;
234
    z-index: 100;
235
    margin: 10px 0 !important;
236
}
237
 
238
#page-mod-resource-view .page-header-content .page-context-header, #page-mod-hvp-view .page-header-content .page-context-header {
239
    padding: 0 1rem;
77 ariadna 240
    margin-top: 45px;
1 efrain 241
}
242
 
243
.courseindex .courseindex-item.courseindex-section-title a {
244
    color: var(--primary-white);
245
}
246
 
247
.courseindex .courseindex-item .courseindex-name,
248
.courseindex .courseindex-item .courseindex-link {
249
    color: var(--primary-white);
250
}
251
 
252
.courseindex .expanded-icon,
253
.courseindex .collapsed-icon {
254
    background-color: #595858;
255
    color: var(--primary-white);
256
}
257
 
258
 
259
.wrapper--with-margin {
260
    width: calc(100% - 40px);
261
}
262
 
263
.btn.btn-icon,
264
a.btn-icon {
265
    color: var(--primary-white);
266
    line-height: 10px;
267
    background: transparent;
268
    width: 32px;
269
    height: 32px;
270
    border-radius: 32px;
271
    box-shadow: inset 0 0 0 1px var(--primary-white);
272
    opacity: 1;
273
}
274
 
275
.btn.btn-icon:hover,
276
a.btn-icon:hover {
277
    box-shadow: inset 0 0 0 2px var(--primary-white);
278
    background-color: var(--primary-white-hover);
279
}
280
 
281
.drawer {
282
    padding: 1px 10px;
283
}
284
 
285
.btn-icon {
286
    min-width: auto;
287
    border: none;
288
}
289
 
290
.btn-icon svg {
291
    width: 20px;
292
    height: 20px;
293
}
294
 
295
.btn.btn-icon,
296
#page .hsuforum-tools a.btn-icon {
297
    height: 30px;
298
    width: 30px;
299
}
300
 
301
.drawerheadercontent {
302
    top: 15px;
303
    right: 15px;
304
}
305
 
306
.video-js {
307
    border-radius: 0px;
308
}
309
 
310
.mediaplugin.mediaplugin_videojs {
311
    margin: 0;
312
}
313
 
314
.path-mod-resource .resourcecontent {
315
    margin-top: 0;
316
}
317
 
318
.video-js.vjs-fluid {
319
    padding-top: 75vh !important;
320
}
321
 
322
.drawer.drawer-right {
323
    visibility: visible;
324
    width: 100%;
325
    display: flex;
326
    float: left;
327
    position: revert;
328
    top: 1px;
329
}
330
 
331
#page.drawers.show-drawer-right {
332
    padding-right: 0;
333
}
334
 
335
#block-region-side-pre {
336
    display: flex;
337
    width: 100%;
338
    gap: 12px;
339
}
340
 
341
.btn-group>.btn:last-child {
342
    border-top-right-radius: 0px;
343
    border-bottom-right-radius: 0px;
344
    height: 40px;
345
}
346
 
347
.btn-group>.btn:first-child {
348
    border-top-left-radius: 0px;
349
    border-bottom-left-radius: 0px;
350
}
351
 
352
.btn-primary, .mod_quiz-next-nav {
353
    background: transparent;
354
    color: #000;
355
    border-radius: 5px;
356
    border-color: #ddd;
357
    margin-top: 10%;
358
    height: 35px;
359
    margin-left: 5px;
360
    font-size: small;
361
}
362
 
363
.mb-2 a:hover{
364
    border: transparent;
365
    color: #000;
366
    background: #ddd;
367
}
368
 
369
.btn.btn-primary .mr-1:hover, .mod_quiz-next-nav:hover{
370
    border: transparent;
371
    color: #000;
372
    background: #ddd;
373
}
374
 
375
#blocks_buttons.btn-group .btn.nav-link {
376
    border: transparent;
377
    color: #212121;
378
    background: transparent;
379
    height: 40px;
380
}
381
 
382
#blocks_buttons.btn-group .btn.nav-link:hover,
383
#blocks_buttons.btn-group .btn.nav-link.active {
384
    background-color: #F5F5F5;
385
    color: #000;
386
}
387
 
388
#blocks_buttons.btn-group .btn.nav-link.active {
389
    border-bottom: 3px solid #000;
390
}
391
 
392
.card-header{
393
    border-bottom: 1px solid #ddd;
394
    padding: 0px;
395
    height: 46px;
396
}
397
 
398
.card-body {
399
    padding: 10px;
400
    margin-top: 5px;
401
}
402
 
403
#page-mod-resource-view .main-content, #page-mod-hvp-view .main-content {
404
    margin-bottom: 0 !important;
74 ariadna 405
    margin-top: 50px;
1 efrain 406
}
407
 
408
#page-mod-resource-view .card-header, #page-mod-hvp-view .card-header {
409
    padding: 0 !important;
410
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
411
}
412
 
413
.main-content {
414
    height: 65vh !important;
415
    overflow: auto;
416
    margin-bottom: 2px;
417
}
418
 
419
#page-mod-resource-view .main-content, #page-mod-hvp-view .main-content {
420
    height: 75vh !important;
421
}
422
 
423
.comment-list li{
424
    border: 1px solid #ddd;
425
    border-radius: 0px;
426
    padding: 20px;
427
}
428
 
429
.comment-message-meta a {
430
    color: #212121;
431
    font-size: 15px;
432
}
433
 
434
.comment-message .text {
435
    color: #000;
436
}
437
 
438
.drawer.drawer-right{
439
    padding: 0;
440
}
441
 
442
.drawer-right .drawercontent{
443
    height: fit-content;
444
    padding: 0;
445
    width: 100%;
446
}
447
 
448
.forum-post {
449
    border: 1px solid #ddd;
450
    border-radius: 10px;
451
    display: block;
452
    margin: auto;
453
    padding: 0;
454
    width: 60%;
455
}
456
 
457
.forum-post-header{
458
    padding: 12px;
459
    margin-bottom: 0;
460
}
461
 
462
.attachedimages, .post-content-container {
463
    padding: 0 12px;
464
}
465
 
466
.attachedimages img {
467
    display: block;
468
    margin: auto;
469
}
470
 
471
.rui-forum-edit-buttons {
472
    display: flex;
473
    gap: 5px;
474
    flex-wrap: wrap;
475
}
476
 
477
.post-actions{
478
    border-top: 1px solid #ddd;
479
    gap: 5px;
480
    padding-left: 0.5rem !important;
481
}
482
 
483
.path-mod-forum .indent{
484
    margin-left: 0;
485
}
486
 
487
@media (min-width: 768px){
488
    .forum-post-reply {
489
        margin-left: 5%;
490
        max-width: 90%;
491
    }
492
}
493
 
494
textarea.form-control {
495
    border-radius: 0px;
496
    border: 1px solid #000;
497
}
498
 
499
.rui-page-footer {
500
    display: none;
501
}
502
 
503
.rui-footer-block--3 {
504
    display: none;
505
}
506
 
507
@media (min-width: 768px){
508
#page-wrapper #page {
509
    padding-top: 55px;
510
    }
511
}
512
 
513
.btn-group .btn.active, .btn-group #page .hsuforum-tools a.active, #page .hsuforum-tools .btn-group a.active {
514
    background-color: #edeffa;
515
    color: #000;
516
    height: 40px;
517
}
518
 
519
.drawer-right .drawerheader{
520
    display: none;
521
}
522
 
523
.page-header-content {
524
    margin: 11px 0;
525
    position: relative;
526
    z-index: 1;
527
}
528
 
449 ariadna 529
.rui-main-content-title--h3{
530
    display: none;
531
}
1 efrain 532
 
533
.flex-wrap{
534
    padding-top: 2px;
535
}
536
 
537
.activityiconcontainer {
538
    margin-left: 5px;
83 ariadna 539
    display: none;
1 efrain 540
}
541
 
542
@media (min-width: 320px){
543
.form-inline .custom-select {
544
    margin-left: 5px;
545
    font-size: smaller;
546
    height: 35px;
547
    padding-top: 5px;
548
    padding-bottom: 5px;
549
    border-radius: 5px;
550
    margin-top: 15px;
551
}
552
}
553
 
554
.rui-title-container {
555
    margin-top: 0px;
556
    margin-bottom: 0px;
557
}
558
 
559
.form-inline input {
560
    height: 35px;
561
    padding-top: 5px;
562
    padding-bottom: 5px;
563
    border-radius: 5px;
564
}
565
 
566
.mb-4, .my-4 {
567
    margin-bottom: 0.5rem !important;
568
    height: 40px;
569
}
570
 
571
[data-action="forum-inpage-submit"] {
572
    position: relative;
573
    height: 35px;
574
}
575
 
576
.btn.dropdown-toggle, #page .hsuforum-tools a.dropdown-toggle {
577
    border: 0;
578
    border-radius: 5px;
579
    height: 35px;
580
    font-size: smaller;
581
    margin-right: 15px;
582
    margin-top: 7%;
583
}
584
 
585
.btn-secondary{
586
    border-radius: 5px;
587
    margin-top: 5px;
588
    margin-right: 12px;
589
}
590
 
591
 
592
 
593
@media (min-width: 768px) {
594
    .tertiary-navigation .navitem:not(:last-child), .tertiary-navigation .navitem-divider:not(:last-child) {
595
        margin-left: 10px;
596
        margin-top: 5px;
597
    }
598
}
599
 
600
.mr-1{
601
    height: 35px;
602
    font-size: smaller;
603
}
604
 
605
@media (min-width: 320px) {
606
    .mform fieldset.collapsible legend a.fheader[aria-expanded="true"]{
607
        margin-left: 5px;
608
        margin-right: 10px;
609
    }
610
}
611
 
612
[data-fieldtype="editor"]>div {
613
    margin-right: 10px;
614
}
615
 
616
.mb-0 {
617
    margin-right: 0%;
618
    margin-left: 3%;
619
}
620
 
621
.filemanager-container{
622
    margin-right: 10px;
623
}
624
 
625
.fp-navbar {
626
    border-color: #E1E1E1;
627
    margin-right: 10px;
628
}
629
 
630
.filemanager .fp-restrictions {
631
    margin-right: 15px;
632
}
633
 
634
.ml-1{
635
    margin-left: 0.25rem !important;
636
    margin-top: 13.5px !important;
637
}
638
 
639
form-inline .custom-select {
640
    margin-top: 15px;
641
}
642
 
643
.submissionstatustable{
644
    margin-top: 3%;
645
}
646
 
647
.btn:not(:disabled):not(.disabled), #page .hsuforum-tools a:not(:disabled):not(.disabled) {
648
    margin-top: 5px;
649
}
650
 
651
button:not(:disabled){
652
    height: 35px;
653
}
654
 
655
.custom-control{
656
    margin-top: 5px;
657
}
658
 
659
.tertiary-navigation .row{
660
    margin-left: 10px;
661
}
662
 
663
.h3 {
664
    font-size: 1rem;
665
    line-height: 1.3;
666
    margin-left: 10px;
667
}
668
 
669
.que .grade{
670
    margin-top: 10px;
671
}
672
 
673
.que .qtext {
674
    font-size: smaller;
675
}
676
 
677
.formulation.clearfix {
678
    width: 50%;
679
    margin-left: 25%;
680
}
681
 
682
.notyetanswered .state{
683
    margin-left: 7px;
684
}
685
 
686
.que.multichoice .answer div.r0{
687
    height: 40px;
688
    font-size: smaller;
689
}
690
 
691
.ml-1{
692
    margin-top: 0.25px !important;
693
}
694
 
695
.que .info .questionflag a{
696
    border-radius: 5px;
697
}
698
 
699
#page-mod-quiz-attempt .submitbtns .mod_quiz-next-nav{
700
    margin-right: 5px;
701
    font-size: 75%;
702
}
703
 
704
.btn--darkmode{
705
    display:none;
706
}
707
 
708
.search-input-group{
709
    margin-left: 14.5%;
710
}
711
 
712
.rui-course-card-deck {
713
    display: flex !important;
714
    flex-wrap: wrap;
715
    flex-direction: row !important;
716
}
717
 
718
.rui-course-card-deck .rui-course-card {
719
    border-radius: 20px;
720
    border: 1px solid #eee;
721
    box-shadow: 1px 1px 1px #ddd;
722
    grid-template-columns: repeat(3, 1fr);
723
    grid-template-rows: repeat(2, 1fr);
724
    max-width: calc(50% - 18px);
725
    min-width: 450px;
726
    width: 100%;
727
}
728
 
729
.rui-course-card-deck .rui-course-card > *:not(a){
730
    grid-column: 2/4;
731
}
732
 
733
.rui-course-card-deck .rui-course-card > a{
734
    grid-column: 1/2;
735
    grid-row: 1/3;
736
}
737
 
738
#page-my-index #block-region-dtopblocks {
739
    display: flex;
740
    flex-wrap: wrap;
741
    justify-content: space-between;
742
}
743
 
744
#page-my-index #block-region-dtopblocks > .card{
745
    flex: 1;
746
}
747
 
748
#page-my-index #block-region-dtopblocks .rui-course-card{
749
    max-width: none;
750
}
751
 
752
#page.drawers .main-inner{
753
    background-color: #fff;
754
}
755
 
756
.search-input-group .search-input {
757
    font-size: small;
758
    height: 35px;
759
}
760
 
761
body.drawer-open-right #sidepreopen-control {
762
    position: fixed;
763
    z-index: 1120;
764
    display: none;
765
}
766
 
767
.card-title {
768
    display: none !important;
769
}
770
 
771
 
449 ariadna 772
 
1 efrain 773
h1 {
774
    font-size: 30px;
775
    margin-bottom: 5px;
776
}
777
 
778
.block_myprofile .myprofileitem.fullname {
779
    font-size: 1.4rem;
780
}
781
 
782
.form-control, [type="text"]{
783
    border-radius: 5px;
784
    font-size: smaller;
785
    height: 35px;
786
}
787
 
788
.search-input-group .search-input-btn{
789
    right: -35px;
790
}
791
 
792
.myprofileitem p {
793
    font-size: 1.1rem;
794
}
795
 
10 ariadna 796
.userinitials{
797
    border-radius: 30px;
798
    border: 1px solid #000000;
799
    color: #ffffff;
800
    background-color: #000;
801
}
802
 
803
.comment-message .picture .userinitials{
804
    min-width: 50px;
805
    min-height: 50px;
32 ariadna 806
}
807
 
808
.page-mycourses .block .block-controls{
809
    margin-top: 25px;
810
    right: 0;
61 ariadna 811
}
812
 
77 ariadna 813
 
814
.mr-5 {
62 ariadna 815
    border: 1px solid #212121;
61 ariadna 816
    border-radius: 10px;
62 ariadna 817
    background: #212121;
77 ariadna 818
    margin-top: 45px;
819
    width: 210px !important;
820
    height: 50px !important;
81 ariadna 821
    margin-right: 5px !important;
61 ariadna 822
}
823
 
824
.block_point_view.reactions-container {
825
    z-index: 1;
826
    position: relative;
827
    float: right;
78 ariadna 828
    margin-top: 27px;
61 ariadna 829
    margin-right: 2.5rem !important;
72 ariadna 830
    width: 200px !important;
831
    height: 100px !important;
62 ariadna 832
}
833
 
834
.d-inline-block {
72 ariadna 835
    color: #bbb;
63 ariadna 836
}
837
 
69 ariadna 838
@media (min-width: 768px) {
839
    #page-wrapper #page {
840
        padding-top: 5px;
841
    }
72 ariadna 842
}
843
 
844
.my-0{
845
    height: 20px;
846
}
847
 
848
.rounded {
849
    border-radius: 30px !important;
75 ariadna 850
}
851
 
852
.singleselect {
853
    max-width: 100%;
854
    margin-left: 2.5px;
76 ariadna 855
}
856
 
79 ariadna 857
.block_point_view.reactions-container .withtooltip {
858
    margin-right: -2.5px;
82 ariadna 859
}
860
 
861
.path-mod .page-header-content .rui-main-content-title{
862
    display: none;
863
}
83 ariadna 864
.page-header-image{
82 ariadna 865
    display: none;
83 ariadna 866
}
85 ariadna 867
 
868
.dropdown-menu.show {
869
    max-width: 300px;
870
    width: 300px;
871
    overflow: auto;
872
}
873
 
89 ariadna 874
.btn.btn-icon, #page .hsuforum-tools a.btn-icon {
875
    color: #bbb;
876
}
85 ariadna 877
 
89 ariadna 878
.rui-logo.rui-logo-box {
91 ariadna 879
    box-shadow: none;
89 ariadna 880
}
92 ariadna 881
 
882
.loginfailures .usermenu .avatar::before {
883
    width: 13.5px !important;
884
    height: 13.5px !important;
885
    top: 2px;
886
    right: auto;
887
}
100 ariadna 888
 
889
.student_feedback_container{
890
    display: flex;
891
    flex-direction: row-reverse;
892
}
893
 
894
.student_feedback_container h4{
895
    display: none;
896
}
165 ariadna 897
 
898
.bloque {
167 ariadna 899
    border: none !important;
165 ariadna 900
    margin-right: 10px;
312 ariadna 901
}
902
 
903
.row {
904
    margin-left: 0px;
319 ariadna 905
}
906
 
907
.activity-navigation {
908
    display: none;
337 ariadna 909
}
910
 
911
.path-mod .rui-activity-wrapper {
912
    border: none;
913
    margin-bottom: 0px;
914
}
359 ariadna 915
 
916
.btn-cesa-course-completion{
337 ariadna 917
    top: 4rem;
918
    right: 1rem;
359 ariadna 919
    margin-bottom: 5px;
345 ariadna 920
}
921
.rui-login-box {
922
    border: 1px solid #e1e1e1;
923
    width: max-content;
348 ariadna 924
    margin-left: 38%;
345 ariadna 925
    padding: 30px;
926
    border-radius: 20px;
927
}
928
 
351 ariadna 929
.form-control--username-box{
345 ariadna 930
    margin-bottom: 0.5rem !important;
931
    margin-top: 20px !important;
349 ariadna 932
    margin-right: 0px !important;
346 ariadna 933
}
934
 
935
.rui-show-password-btn.rui-show-password-btn--hidden {
936
    border-radius: 50px;
348 ariadna 937
    height: 30px;
938
    margin-top: 1px;
347 ariadna 939
}
940
 
941
.rui-login-layout-1 .login-container {
942
    min-height: 100vh;
943
    display: grid;
944
    align-content: center;
945
    background: #01011e;
348 ariadna 946
}
349 ariadna 947
.btn-lg{
348 ariadna 948
    padding: 1rem 1.75rem;
350 ariadna 949
    font-size: 1rem;
348 ariadna 950
    line-height: 1.5;
352 ariadna 951
    border-radius: 5px;
348 ariadna 952
    display: flex !important;
350 ariadna 953
    height: 45px !important;
352 ariadna 954
}
955
 
956
.item-cursos{
957
    width: 95% ;
958
}
959
 
960
.bloque {
961
    padding: 0px;
962
    border-radius: 3px;
963
    border: 1px solid #cccccc;
964
    /* display: inline-block; */
965
    margin-bottom: 15px;
356 ariadna 966
    margin-left: 8.5px;
371 ariadna 967
    margin-right: 8px;
355 ariadna 968
    max-width: 270px;
366 ariadna 969
}
970
 
971
.courseindex .courseindex-item .completion_complete~.courseindex-link {
972
    color: #07a4e3;
973
}
974
.courseindex .courseindex-item .completioninfo.completion_complete {
975
    color: #07a4e3;
370 ariadna 976
}
977
 
978
.rui-dashboard-bottom .mt-4 .mb-4{
979
    display: none;
980
}
373 ariadna 981
.page-header-content .flex-wrap{
982
    display: none;
983
}
984
 
468 ariadna 985
.close{
469 ariadna 986
    height: 30px !important;
987
    width: 30px !important;
488 ariadna 988
}
989
 
990
.alert, #page-mod-choice-view #notice p {
991
    position: relative;
992
    margin: 1rem 0;
993
    padding: .55rem 1.25rem;
994
    border: 1px solid transparent;
995
    border-radius: 20px;
996
    font-size: .813rem;
997
    font-weight: 500;
998
    margin-left: 5px;
999
    margin-right: 5px;
468 ariadna 1000
}