-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathestilo.css
More file actions
64 lines (49 loc) · 796 Bytes
/
estilo.css
File metadata and controls
64 lines (49 loc) · 796 Bytes
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
html {
box-sizing: border-box;
height: 100%;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
html,
body {
margin: 0;
padding: 0;
/* Código para poner un cursor personalizado*/
/* cursor: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/9632/heart.png"), auto; */
}
h2 {
font-size: 1.1em;
}
#contenedor {
margin: auto 1em;
text-align: center;
}
#tituloPagina {
margin-top: 1em;
margin-bottom: 0;
font-family: sans-serif;
}
#foto {
height: 300px;
border: #ff7300 solid 5px;
margin-top: 15px;
}
.tituloPrediccion {
font-size: 2em;
}
.prediccion {
font-size: 1.5em;
}
.prediccion::first-letter {
text-transform: uppercase;
}
#boton {
font-size: 0.9em;
background-color: #3d00fdb5;
color: white;
margin-bottom: 2em;
cursor: pointer;
}