-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter_Style.css
80 lines (63 loc) · 1.21 KB
/
footer_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
footer {
align-items: center;
background-color: var(--colorSubtitulos);
display: flex;
flex-direction: column;
height: 75px;
justify-content: space-evenly;
padding-bottom: 1rem;
width: 100%;
}
.autor {
display: flex;
gap: 1rem;
}
.autor p {
font-size: 1.5rem;
}
.autor .hecho-por {
font-weight: 400;
}
.autor .pablo {
color: white;
font-weight: 300;
}
.iconos-footer {
display: flex;
gap: 2rem
}
.iconos-footer a {
text-decoration: none;
}
.circulo-icono-footer {
align-items: center;
background-color: white;
border-radius: 50%;
display: flex;
height: 35px;
justify-content: center;
width: 35px;
}
.circulo-icono-footer i {
color: var(--colorSubtitulos);
font-size: 2rem;
}
.iconos-footer a :hover {
background-color: #095f87;
transition: 0.5s;
}
/* -------------- Media query para tablet -------------- */
@media (min-width: 767px) {
footer {
flex-direction: row;
justify-content: space-between;
margin-top: 4rem;
padding: 0rem 8rem 0rem 3rem;
}
}
/* -------------- Media query para desktop --------------*/
@media (min-width:1024px) {
.autor p {
font-size: 2rem;
}
}