Proyectos de Subversion Moodle

Rev

Rev 1 | Rev 441 | 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{
78
	background-size: cover;
79
    min-height: 100px;
80
}
81
.curso_progress-cesa {
82
    max-width: 300px;
83
    margin: 0px 20px 5px;
84
    display: block;
85
}
86
 
437 ariadna 87
.list-block-cursos-catalogo-ajax {
88
    display: grid;
89
    grid-template-columns: repeat(auto-fill, minmax(20vw, 1fr));
90
    width: 100%;
91
    margin: 16px 0;
92
    gap: 16px;
93
}
1 efrain 94
 
437 ariadna 95
 
1 efrain 96
@media only screen and (max-width: 1199.98px){
97
 
98
/*
99
.main_logo_home2 .mt20{
100
	top: 5px;
101
}
102
  .mobile-menu .header.stylehome1 a:not(.mobileBrand) {
103
    top: 5px;
104
  }
105
  .stylehome1 {
106
    bottom: 0;
107
    height: 50px;
108
  }
109
  .stylehome1 .nav_logo_img, .stylehome1.dashbord_mobile_logo .nav_logo_img {
110
    position: relative;
111
    max-height: 45px;
112
    margin-top: 5px;
113
  }
114
  .ccn_dashbord_disable_drawer .dashboard_main_content {
115
    padding-left: 10px!important;
116
  }
117
  .our-dashbord.dashbord .container-fluid {
118
    padding-right: 5px;
119
  }
120
  .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) {
121
    padding: 0px;
122
  }
123
*/
124
}
125
</style>
126
<div id="block-cursos-catalogo-ajax" data-region="block-cursos-catalogo-ajax" >
127
  <h1>Cat&aacute;logo de Cursos</h1>
128
  <form id="form-block-cursos-catalogo-ajax" name="form-block-cursos-catalogo-ajax" class="mb-0">
129
    <div class="row w-100">
130
      <div class="col-md-7 col-sm-12 col-12 pl-0">
131
        <div class="form-group">
132
          <input placeholder="Buscar por nombre" class="form-control" type="text" name="search_text" id="search_text" value="" />
133
        </div>
134
      </div>
135
      <div class="col-md-5 col-sm-12 col-12">
136
        <div class="form-group">
137
          <select class="form-control" id="category_id" name="category_id">
138
            <option value="0" selected>Mostrar todos</option>
139
            {{#categories}}
140
              <option value="{{id}}">{{name}}</option>
141
              {{#childsLevel0}}
142
               <option value="{{id}}">--{{name}}</option>
143
                {{#childsLevel1}}
144
               <option value="{{id}}">----{{name}}</option>
145
                {{#childsLevel2}}
146
               <option value="{{id}}">--{{name}}</option>
147
              {{/childsLevel2}}
148
              {{/childsLevel1}}
149
              {{/childsLevel0}}
150
            {{/categories}}
151
          </select>
152
        </div>
153
      </div>
154
    </div>
155
  </form>
156
  <div id="list-block-cursos-catalogo-ajax-course-badges">
157
 
158
  </div>
437 ariadna 159
  <div id="list-block-cursos-catalogo-ajax" class="list-block-cursos-catalogo-ajax">
1 efrain 160
  </div>
161
</div>