-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilos.css
83 lines (70 loc) · 1.29 KB
/
estilos.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
.colores {
--fondo: #9cf3ff;
--principal: #085f03;
--texto: #03683b;
--texto_claro: #a0ffd4;
--footer: #004223;
}
body {
font-family: sans-serif;
margin: 0;
display: flex;
align-items: center;
flex-direction: column;
min-height: 100dvh;
background-color: var(--fondo);
}
div, body, header, section, aside, nav, ul, footer {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.header {
width: 100%;
height: 25dvh;
}
.header img {
width: 100%;
height: 100%;
object-fit: cover;
}
.section {
margin: auto 12px;
width: 70%;
}
.titulo {
text-align: center;
font-size: 2rem;
margin: 16px;
}
.fieldset {
border: 2px solid var(--principal);
border-radius: 12px;
padding: 8px;
margin: 12px;
}
.fieldset legend {
color: var(--texto);
font-weight: 400;
}
#controlador div {
display: grid;
grid-template-columns: 100px auto 100px auto 100px;
justify-content: center;
align-items: center;
gap: 4px;
}
.footer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 12px 20px;
width: 100%;
background-color: var(--footer);
color: var(--texto_claro);
}
.firma {
align-self: self-start;
margin: 0;
}