-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
178 lines (164 loc) · 3.11 KB
/
custom.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
body {
background-color: #fff6f6
}
h1 {
text-align: center;
}
h4 {
font-size: 16px;
font-weight: 700;
}
header {
padding: 20px 0 0 0;
background: white;
text-align: center;
}
@media (min-width: 750px) {
header {
text-align: left;
}
}
.borrar-curso {
background-color: red;
border-radius: 50%;
padding: 5px 10px;
text-decoration: none;
color: white;
font-weight: bold;
}
ul {
list-style: none;
}
#hero {
background-image:url(../img/hero.jpg);
height: 350px;
}
#encabezado {
margin: 30px 0;
}
.submenu {
position: relative;
}
.submenu #carrito{
display: none;
}
.submenu:hover #carrito{
display: block;
position: absolute;
right:0;
top:100%;
z-index: 1;
background-color: white;
padding: 20px;
min-height: 400px;
min-width: 300px;
}
.vacio {
padding: 10px;
background-color: crimson;
text-align: center;
border-radius: 10px;
color: white;
}
.contenido-hero {
margin-top: 80px;
color: white;
}
.contenido-hero form {
position: relative;
margin-bottom: 0;
}
.contenido-hero form #buscador {
height: 50px;
margin-bottom: 0;
}
.contenido-hero form .submit-buscador {
position: absolute;
right:0;
top:0;
height: 100%;
padding: 0;
display: block;
text-indent: -9999px;
width: 50px;
background-image: url(../img/lupa.png);
background-position: right center;
background-repeat: no-repeat;
border:none;
}
.barra {
padding: 20px 0;
background: #741d51; /* Old browsers */
background: -moz-linear-gradient(left, #741d51 0%, #e44e52 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #741d51 0%,#e44e52 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #741d51 0%,#e44e52 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#741d51', endColorstr='#e44e52',GradientType=1 ); /* IE6-9 */
}
.barra p {
margin:0;
color: white;
}
.icono {
background-repeat: no-repeat;
background-position: left center;
padding-left: 60px;
background-size: 30px;
margin-bottom: 40px;
text-align: center;
}
@media (min-width: 750px) {
.icono {
margin-bottom:0;
}
}
.icono1 {
background-image: url(../img/icono1.png);
}
.icono2 {
background-image: url(../img/icono2.png);
}
.icono3 {
background-image: url(../img/icono3.png);
}
#lista-cursos .row {
margin-bottom:20px;
}
.agregar-carrito {
margin:10px 0;
}
.card {
text-align: center;
border: 1px solid #e1e1e1;
background: white;
}
@media (min-width: 550px) {
.card {
text-align: left;
}
}
.info-card {
padding: 10px 20px;
}
.info-card p,
.card h4 {
margin-bottom: 5px;
}
.info-card .precio {
text-decoration: line-through;
font-size: 18px;
margin-top: 10px;
}
.info-card .precio span {
font-weight: 700;
font-size: 22px;
}
.footer {
margin-top: 40px;
border-top:1px solid #aaa;;
padding-top: 40px;
}
.footer .menu a{
display: block;
margin-bottom: 10px;
text-decoration: none;
}