-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (69 loc) · 1.66 KB
/
style.css
File metadata and controls
84 lines (69 loc) · 1.66 KB
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
/* ------------------------------------- */
/* Reinicio de los estilos para borrar modificaciones del navegador */
/* ------------------------------------- */
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-size: 100%;
}
/* ------------------------------------- */
/* Estilos para el HOME */
/* ------------------------------------- */
h1{
font-family: "Fontdiner Swanky", serif;
font-weight: 400;
font-style: normal;
font-size: 23pt;
text-align: center;
}
h2{
font-family: "Tinos", serif;
font-weight: 400;
font-style: normal;
font-size: 15pt;
text-align: center;
}
nav{
display: flex;
align-items: center;
justify-content: center;
}
nav a{
font-family: Arial, Helvetica, sans-serif;
font-size: 12pt;
padding: 1% 3%;
text-decoration: none;
color: white;
background-color: gray;
margin: 10px;
border-radius: 12px;
}
/* ------------------------------------- */
/* Estilos para las secciones */
/* ------------------------------------- */
main{
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto;
}
header{
background-color: rgb(190, 190, 190);
padding: 5%;
}
nav{
background-color: rgb(165, 165, 165);
padding: 5%;
}
section{
font-family: Arial, Helvetica, sans-serif;
height: 600px; /* Esta propiedad se puede cambiar según el alto del contenido */
background-color: rgb(190, 190, 190);
padding: 5%;
}
footer{
font-family: Arial, Helvetica, sans-serif;
background-color: rgb(165,165,165);
padding: 1%;
text-align: center;
}