-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
305 lines (257 loc) · 6.07 KB
/
style.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
/*
Theme Name: Tema SCRIPT
Author: Tomás El Fakih
Description: Tema de Wordpress para el proyecto Script: La Base de Datos del Cine Venezolano.
*/
/* Todo el tema de reinicio de las propiedades es manejado por Bootstrap. Solo nos interesa darle estilos a la página. */
/*Edicion del Cuerpo de pagina*/
body {
color: white; /* Que los textos sean blancos por defecto */
}
.widgettitle > a.rsswidget {
color: #fff;
}
.bghack::before {
content: ' ';
position: fixed;
width: 100%;
height: 100%;
top: 0; left: 0;
background: url("assets/Strip5.jpg") no-repeat center center;
background-color: #000;
/*background-position: top right; /*arriba a la derecha*/
/*background-repeat: repeat; que no se repita el fondo*/
background-size: cover;
will-change: transform;
z-index: -1;
}
.text-shadow{
text-shadow: black 0.1em 0.1em 0.2em;
}
.box-shadow{
box-shadow: black 0.1em 0.1em 0.2em;
}
.inner-shadow{
-webkit-box-shadow: inset 10px 0px 151px -5px rgba(0,0,0,0.75);
-moz-box-shadow: inset 10px 0px 151px -5px rgba(0,0,0,0.75);
box-shadow: inset 10px 0px 151px -5px rgba(0,0,0,0.75);
}
.no-shadow {
text-shadow:none;
box-shadow: none;
}
.cursor-pointer {
cursor: pointer;
}
.cursor-pointer:disabled {
cursor: not-allowed;
}
/* Margen a los row */
.row {
margin: 10px 0;
}
/* Estilos del navbar */
nav.navbar {
border-radius: 7px;
}
/*Inicio footer*/
.footer {
background-color: #222;
-webkit-border-radius: 20px;
border-radius: 20px;
}
.footer-top {
padding: 20px;
}
ul.footer-nav {
display: inline-block;
float: none !important;
text-align: center;
margin-top: 10px;
}
ul.footer-nav li:first-child {
margin-left: 0;
}
.alineacionFoot{
float: left;
margin-left: 15px;
}
ul.footer-nav li a {
display: inline-block;
text-transform: uppercase;
text-decoration: none;
transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
}
@media (max-width: 991px){
.copyright-section {
text-align: center;
}
}
.copyright-section {
padding: 15px 0;
font-size: 11px;
letter-spacing: 0.5px;
border-top: 1px solid rgba(255,255,255,.06);
}
.footer-widget-map{
background-image: url('assets/map.png');
}
/*Fin footer*/
/*Estilos de la parte de las redes sociales*/
.social {
position: fixed;
/* Hacemos que la posición en pantalla sea fija para que siempre se muestre en pantalla*/
right: 0; /* Establecemos la barra en la izquierda */
top: 50%; /* Bajamos la barra a la mitad de la altura de la pantalla */
transform: translateY(-50%); /* Subimos la barra la mitad de su altura */
z-index: 999999999;
/* Utilizamos la propiedad z-index para que no se superponga algún otro elemento como sliders, galerías, etc */
}
.social ul {
list-style: none;
}
.social ul li a {
display: inline-block;
color: #fff;
background: #000;
padding: 10px 15px;
text-decoration: none;
text-align: center;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
/*Establecemos una transición a todas las propiedades */
}
.social ul li .fa {
min-width: 25px;
min-height: 25px;
}
.social ul li .icon-facebook {
background: #3b5998;
}
.social ul li .icon-facebook:hover .fa {
color: #3b5998;
}
.social ul li .icon-twitter {
background: #00abf0;
}
.social ul li .icon-twitter:hover .fa {
color: #00abf0;
}
.social ul li .icon-youtube {
background: #bb0000;
}
.social ul li .icon-youtube:hover .fa {
color: #bb0000;
}
.social ul li .icon-instagram {
background: #125688;
}
.social ul li .icon-instagram:hover .fa {
color: #125688;
}
.social ul li .icon-mail {
background: #666666;
}
.social ul li .icon-mail:hover .fa {
color: #666666;
}
.social ul li a:hover {
background: #fff;
/* Cambiamos el fondo cuando el usuario pase el mouse */
/*padding: 20px 15px 15px 15px;*/
/* Hacemos mas grande el espacio cuando el usuario pase el mouse */
}
.Margen {
/*padding: 0px 20px 20px 20px;*/
margin: 0px 20px 20px 20px;
}
/*Estilos de los modales*/
.modal-content {
background-color:#222;
}
/* Estilos del Menú de películas */
/* Póster de la película (móvil) */
@media screen and (max-width: 767px){
.poster {
width: 100%;
margin-bottom: 10%;
}
}
/* Título de la película */
.pel-titulo {
display: inline-block;
margin: 15px;
width: 100%;
}
/* Póster de la película (desktop) */
.poster {
max-width: 100%;
max-height: 500px;
}
/* Estilos carousel de front-page.php */
.carousel-control-prev, .carousel-control-next {
width: 5%;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
position: absolute;
}
.carousel-control-prev-icon {
left: 0;
}
.carousel-control-next-icon{
right: 0;
}
input::-webkit-calendar-picker-indicator {
display: none;
}
legend {
width: auto;
padding: 0 10px;
margin-bottom: 0 !important;
}
fieldset {
border-width: 2px;
border-style: groove;
border-color: threedface;
border-image: initial;
-webkit-padding-before: 0.35em;
-webkit-padding-start: 0.75em;
-webkit-padding-end: 0.75em;
-webkit-padding-after: 0.625em;
margin: initial;
}
.fieldset {
position: relative;
top: 0;
}
.autocomplete-suggestions { text-shadow:none; border: 1px solid #999; background: #FFF; overflow: auto; color:black; }
.autocomplete-suggestion { padding: 2px 5px; white-space: nowrap; overflow: hidden; }
.autocomplete-selected { background: #F0F0F0; }
.autocomplete-suggestions strong { text-shadow:none;font-weight: bold; color: var(--success); }
.autocomplete-group { padding: 2px 5px; }
.autocomplete-group strong { display: block; border-bottom: 1px solid #000; }
.page-numbers{
position: relative;
display: block;
padding: .5rem .75rem;
margin-left: -1px;
line-height: 1.25;
color: #007bff;
background-color: #fff;
border: 1px solid #dee2e6;
}
.timeline-Widget{
-webkit-box-shadow: inset 10px 0px 151px -5px rgba(0,0,0,0.75);
-moz-box-shadow: inset 10px 0px 151px -5px rgba(0,0,0,0.75);
box-shadow: inset 10px 0px 151px -5px rgba(0,0,0,0.75);
background-color: var(--dark);
}
.chosen-container, .chosen-container-single {
text-shadow:none;
box-shadow: none;
color: black!important;
}