-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (63 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
76
77
/* Estilos para el menú y el contenido */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: whitesmoke;
}
.titulo {
text-align: center;
font-style: oblique;
font-size: 63px;
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.trexto-index {
text-align: justify;
font-size: 18px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#img-home {
width: 50%;
height: auto;
}
#img-member {
width: 50%;
height: auto;
}
main {
padding: 20px;
background-color: whitesmoke;
}
footer {
background-color: darkgrey;
}
.bd-footer {
a {
color: var(--bs-body-color);
text-decoration: none;
&:hover,
&:focus {
color: var(--bs-link-hover-color);
text-decoration: underline;
}
}
}
.info-item, .team-member, .card {
margin-bottom: 20px;
}
img {
max-width: 100%;
height: auto;
}
#img-index {
max-width: 100%;
height: auto;
}
@media (max-width: 768px) {
nav ul {
flex-direction: column;
}
.info-item, .team-member {
text-align: center;
}
}