-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (69 loc) · 2.1 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
html {
height: 100%;
width: 100%;
}
/* Formato de Fondo*/
html {
background-image: url("laboratoria.png") ; /* Fondo conimagen */
background-color: #fbe424;
opacity: 0.8; /* hacer translucido el fondo */
background-size: coveras; /* que la imagen del fondo cubra toda la página */
}
/* Formato del Titulo del Quizz */
h2{
font-size: 2cm; /* Tamañotexto */
color: #ff009e;
font-family: Paloseco; /* fuente de la letra */
}
/* FORMATO DEL TEXTO ENTRADA NOMBRE */
.enterUserName {
font-family: fantasy; /* fuente de la letra */
color: #06040c;
font-size: large;
}
/* FORMATO MENSAJE BIENVENIDA */
h3 {
font-size: 2em; /* Tamañotexto */
color: #ff009e;
}
/*FORMATO DEL TEXTO DE PREGUNTAS*/
.questionText {
font-family: fantasy; /* fuente de la letra */
color: black;
font-size:large; /* Tamañotexto */
}
/* FORMATO DEL TEXTO DE LAS OPCIONES DE LAS PREGUNTAS */
.optionText {
font-family: serif;
color: black;
font-size: large;
}
/*CAMBIA DE COLOR OPCIONES CUANDO TE POSICIONAS ENCIMA DE ELLLAS*/
/* :hover SIRVE PARA QUE HAGA ALGO CUANDO TE POCISIONAS ENCIMA SIN DAR CLICK*/
.optionsText:hover {
color: #ff009e;
}
/*FORMATO DE BOTON PARA ENVIAR RESPUESTAS*/
button {
font-family: sans-serif;
background-color: #56f89a;
min-height: 55px; /* alto del boton */
min-width: 100px; /* ancho del boton */
color: #black; /* Color del texto */
border: 5px solid #black; /* Grosor del borde, estilo de línea y color */
border-radius: 18px; /* Añadir esquinas curvadas */
text-align: center; /*Texto centrado*/
font-size: 13px; /*tamaño del texto del boton*/
box-shadow: 0 1px 1px rgba(0,0,0,1); /*sombreado leve
en la parte baja del borde 3d*/
}
/*SOMBRA BOTON CUANDO TE POSICIONAS ENCIMA función obtenida de una pagina*/
/* :hover SIRVE PARA QUE HAGA ALGO CUANDO TE POCISIONAS ENCIMA SIN DAR CLICK*/
button:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);}
/*FORMATO DEL TEXTO DEL PUNTAJE Y MENSAJES FINALES*/
.results {
font-family: serif; /* fuente de la letra */
color: #ff009e; /*color del texto*/
font-size: 2em; /* Tamañotexto */
}