-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.css
161 lines (133 loc) · 3.18 KB
/
footer.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
.footer_h1{
color: whitesmoke;
text-shadow: 1px 1px 6px black;
text-align: center;
margin-bottom: 1.5em;
font-size: 1.3em;
-webkit-box-reflect: below -.6em linear-gradient(transparent, rgba(0, 0, 0, 0.453));
margin-bottom: 1em;
}
.footer_container{
display: flex;
flex-direction: column;
scroll-behavior:unset;
background-color:#1a1a1a;
box-shadow: 5px 5px 15px black;
}
.footer_ul {
display: flex;
justify-content: center;
gap: 1em;
margin-right: 2em;
}
.footer_ul_list {
list-style: none;
}
.footer_ul_list a {
text-decoration: none;
color: white;
}
.footer_h6 {
margin-top: 2em;
margin-bottom: 2em;
text-align: center;
font-size: .8em;
color: whitesmoke;
}
.fab.fa-facebook-f {
display: flex;
justify-content: center;
align-items: center;
padding: .7em;
width: 1.6em;
height: 1.5em;
font-size: 1.3em;
font-weight: bolder;
border: 3px solid white;
background: #1d61ff;
border-radius: 50%;
}
.fab.fa-linkedin-in {
display: flex;
justify-content: center;
align-items: center;
padding: .7em;
width: 1.6em;
height: 1.5em;
font-size: 1.3em;
font-weight: bolder;
border: 3px solid white;
background: #0093e2;
border-radius: 50%;
}
.fab.fa-github {
display: flex;
justify-content: center;
align-items: center;
padding: .7em;
width: .7em;
height: .5em;
font-size: 2em;
font-weight: bolder;
border: 3px solid white;
background-color: #111;
border-radius: 50%;
}
.enlaces .fa-facebook-f:hover {
transform:rotateY(360deg);
transition: all 500ms;
}
.enlaces .fa-github:hover {
transform:rotateY(360deg);
transition: all 500ms;
}
.enlaces .fa-linkedin-in:hover {
transform:rotateY(360deg);
transition: all 500ms;
}
.fa-solid.fa-up-long {
position: fixed;
bottom: 1.5em;
right: 1.5em;
opacity: .6;
color: white;
font-size: 1.6em;
animation: row-inicio .7s alternate infinite;
}
@keyframes row-inicio {
to { transform: translateY(9px);}}
.fa-facebook-f:hover {
box-shadow: 1px 1px 100px #1d61ff,
inset 0 0 30px #1d61ff,1px 1px 30px #1d61ff,0 0 30px #1d61ff,0 0 30px #1d61ff;
border: 2px solid #1d61ff;
}
.fa-github:hover {
box-shadow: 1px 1px 100px #111,
inset 0 0 30px #686767, 0 0 30px #c5c5c5, 0 0 30px #c5c5c5;
border: none;
}
.fa-linkedin-in:hover {
box-shadow: 1px 1px 100px #0093e2,
inset 0 0 30px #0093e2, 0 0 30px #0093e2, 0 0 30px #0093e2;
border: 2px solid #0093e2;
}
.fa-solid.fa-up-long:hover {
text-shadow: 0 2px 5px #0ce3ff, 0 2px 5px #0ce3ff, 0 2px 5px #0ce3ff;
transition: all 200ms;
opacity: 1;
transform: scale(1.6);
}
.hr_footer {
width: 60%;
animation: hr 2s infinite ease-in-out alternate-reverse;
}
@keyframes hr {
to {
opacity: 1;
box-shadow: 0 0 2px #0ce3ff,
inset 20px 0 20px #0ce3ff, 20px 0 20px #0ce3ff , -20px 0 20px #0ce3ff;
}
from {
opacity: 0;
}
}