-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (69 loc) · 1.21 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
/* Estilo global */
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
background-color: #f4f4f9;
}
/* Encabezado */
header {
background: #007acc;
color: white;
padding: 20px 0;
text-align: center;
}
header h1 {
font-size: 2.5rem;
margin: 0;
}
header p {
margin: 5px 0 0;
font-size: 1.2rem;
}
/* Secciones */
section {
margin: 20px auto;
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
section h2 {
color: #007acc;
}
/* Enlaces */
a {
display: inline-block;
padding: 10px 20px;
margin: 5px;
background-color: #007acc;
color: white;
text-decoration: none;
border-radius: 5px;
transition: transform 0.2s ease, background-color 0.3s ease;
}
a:hover {
transform: scale(1.2);
background-color: #005fa3;
color:white;
}
a:active{
color:white;
}
a:visited{
color:white;
}
/* Pie de página */
footer {
text-align: center;
background-color: #f4f4f9; /* Fondo claro */
color: #333; /* Texto oscuro */
padding: 10px;
font-size: 0.9rem;
}
footer p {
margin:0;
}