-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (69 loc) · 1.15 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
html {
box-sizing: border-box;
font-size: 62.5%;
/**reset para rems 62.5%=10 px de 16px*/
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
font-family: 'Lato', sans-serif;
font-size: 1.6rem;
line-height: 2;
background-color: #e9e49d;
}
.centrar {
text-align: center;
}
.formulario {
display: flex;
flex-direction: column;
align-items: center;
}
.main {
display: flex;
flex-direction: column;
align-items: center;
}
.boton {
color: white;
background-color: #71B100;
font-weight: 700;
text-decoration: none;
font-size: 1.8rem;
padding: 1rem 3rem;
text-align: center;
border: none;
flex: 0 0 100%;
cursor: pointer;
border-radius: .8rem;
}
.etiqueta {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.area {
background-color: #e7e4b3;
max-width: 80%;
resize: none;
}
.res {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 1rem;
}
.resultado {
padding: .6rem 0;
}
.imagen {
background-color: black;
padding: 1rem;
}
.creditos {
margin-top: 5rem;
display: flex;
flex-direction: column;
align-items: center;
}