Proyectos de Subversion Moodle

Rev

Rev 437 | Rev 442 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<style>
2
.txt-name-course{
3
    display: block;
4
    /*background-color:blue;*/
5
    line-height: normal;
6
}
7
.txt-course-category{
8
    font-size: smaller;
9
    /*background-color:green;*/
10
    display: block;
11
    line-height: normal;
12
}
13
 
14
.txt-activity-summary{
15
    font-size: smaller;
16
    /*background-color:green;*/
17
    display: block;
18
    line-height: normal;
19
}
20
 
21
.block .block-cards .progress {
22
    height: 1.5rem;
23
}
24
.block .block-cards .progress {
25
    height: 1.5rem;
26
    text-align: center;
27
}
28
.ccn_mc_progress-cesa {
29
    max-width: 300px;
30
    margin: 5px 20px;
31
    display: block;
32
    min-width: 200px;
33
}
34
.small-cesa {
35
    font-size: 80%;
36
    font-weight: 400;
37
    text-align: center;
38
    width:100%;
39
}
40
 
41
.item-cursos{
42
	/*background-color: green;*/
43
    color: white;
44
    text-align: center;
45
    margin: 10px;
46
    padding: 10px;
47
    /*background-color: grey;*/
48
    color: white;
49
    text-align: center;
50
    margin: 10px 0px;
51
    padding: 0px;
52
    /*border: 1px solid black;*/
53
	border: 0px;
54
 
55
}
56
.bloque {
57
	padding: 0px;
58
  border-radius: 3px;
59
  border: 1px solid #cccccc;
60
  /*display: inline-block;*/
61
  margin-bottom: 15px;
62
  margin-left: 0px;
63
}
64
.bloque a:hover{
65
	background-color:#bcc7ff;
66
	text-decoration: none;
67
}
68
.card-img {
69
    /* width: auto; */
70
    height: 8rem;
71
    background-size: cover;
72
}
73
.card-body, .userprofile .profile_tree section {
74
    flex: 1 1 auto;
75
    padding: 0.25rem;
76
}
77
.img-course{
441 ariadna 78
	  background-size: cover;
1 efrain 79
    min-height: 100px;
441 ariadna 80
    aspect-ratio: 1/1;
1 efrain 81
}
82
.curso_progress-cesa {
83
    max-width: 300px;
84
    margin: 0px 20px 5px;
85
    display: block;
86
}
87
 
437 ariadna 88
.list-block-cursos-catalogo-ajax {
89
    display: grid;
90
    grid-template-columns: repeat(auto-fill, minmax(20vw, 1fr));
91
    width: 100%;
92
    margin: 16px 0;
93
    gap: 16px;
94
}
1 efrain 95
 
437 ariadna 96
 
1 efrain 97
@media only screen and (max-width: 1199.98px){
98
 
99
/*
100
.main_logo_home2 .mt20{
101
	top: 5px;
102
}
103
  .mobile-menu .header.stylehome1 a:not(.mobileBrand) {
104
    top: 5px;
105
  }
106
  .stylehome1 {
107
    bottom: 0;
108
    height: 50px;
109
  }
110
  .stylehome1 .nav_logo_img, .stylehome1.dashbord_mobile_logo .nav_logo_img {
111
    position: relative;
112
    max-height: 45px;
113
    margin-top: 5px;
114
  }
115
  .ccn_dashbord_disable_drawer .dashboard_main_content {
116
    padding-left: 10px!important;
117
  }
118
  .our-dashbord.dashbord .container-fluid {
119
    padding-right: 5px;
120
  }
121
  .dashbord .block:not(.block_cocoon_mynews):not(.block_starredcourses):not(.block_myoverview):not(.block_recentlyaccessedcourses):not(.block_cocoon_myviews):not(.block_cocoon_myorders):not(#mod_quiz_navblock) {
122
    padding: 0px;
123
  }
124
*/
125
}
126
</style>
127
<div id="block-cursos-catalogo-ajax" data-region="block-cursos-catalogo-ajax" >
128
  <h1>Cat&aacute;logo de Cursos</h1>
129
  <form id="form-block-cursos-catalogo-ajax" name="form-block-cursos-catalogo-ajax" class="mb-0">
130
    <div class="row w-100">
131
      <div class="col-md-7 col-sm-12 col-12 pl-0">
132
        <div class="form-group">
133
          <input placeholder="Buscar por nombre" class="form-control" type="text" name="search_text" id="search_text" value="" />
134
        </div>
135
      </div>
136
      <div class="col-md-5 col-sm-12 col-12">
137
        <div class="form-group">
138
          <select class="form-control" id="category_id" name="category_id">
139
            <option value="0" selected>Mostrar todos</option>
140
            {{#categories}}
141
              <option value="{{id}}">{{name}}</option>
142
              {{#childsLevel0}}
143
               <option value="{{id}}">--{{name}}</option>
144
                {{#childsLevel1}}
145
               <option value="{{id}}">----{{name}}</option>
146
                {{#childsLevel2}}
147
               <option value="{{id}}">--{{name}}</option>
148
              {{/childsLevel2}}
149
              {{/childsLevel1}}
150
              {{/childsLevel0}}
151
            {{/categories}}
152
          </select>
153
        </div>
154
      </div>
155
    </div>
156
  </form>
157
  <div id="list-block-cursos-catalogo-ajax-course-badges">
158
 
159
  </div>
437 ariadna 160
  <div id="list-block-cursos-catalogo-ajax" class="list-block-cursos-catalogo-ajax">
1 efrain 161
  </div>
162
</div>