Skip to content

Commit 23d8b73

Browse files
committed
Se realizo algunas mejoras pequenias al proyecto
1 parent cce80b1 commit 23d8b73

File tree

5 files changed

+55
-2
lines changed

5 files changed

+55
-2
lines changed

css/main.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,25 @@ body {
337337
width: 70%;
338338
}
339339

340+
.link:link, .link:visited {
341+
display: inline-block;
342+
text-decoration: none;
343+
color: currentColor;
344+
text-transform: uppercase;
345+
background-color: #101d2c;
346+
padding: 4px;
347+
-webkit-transition: all .2s;
348+
transition: all .2s;
349+
}
350+
351+
.link:hover, .link:active {
352+
color: #c69963;
353+
-webkit-box-shadow: 1px 3px 5px rgba(255, 255, 255, 0.4);
354+
box-shadow: 1px 3px 5px rgba(255, 255, 255, 0.4);
355+
-webkit-transform: rotate(-5deg) scale(1.1);
356+
transform: rotate(-5deg) scale(1.1);
357+
}
358+
340359
.sidebar {
341360
background-color: #c69963;
342361
grid-column: side-start / side-end;

css/main.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/style.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,20 @@ body {
207207
text-align: center;
208208
width: 70%; }
209209

210+
.link:link, .link:visited {
211+
display: inline-block;
212+
text-decoration: none;
213+
color: currentColor;
214+
text-transform: uppercase;
215+
background-color: #101d2c;
216+
padding: 4px;
217+
transition: all .2s; }
218+
219+
.link:hover, .link:active {
220+
color: #c69963;
221+
box-shadow: 1px 3px 5px rgba(255, 255, 255, 0.4);
222+
transform: rotate(-5deg) scale(1.1); }
223+
210224
.sidebar {
211225
background-color: #c69963;
212226
grid-column: side-start / side-end;

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ <h5 class="card__name">Apartamento familiar moderno</h5>
422422
</ul>
423423

424424
<p class="copyright">
425-
&copy; Copyright 2022 por José Lozada. Diseño de Jonas Schmedtmann.
425+
&copy; Copyright 2022 por <a class="link" href="https://github.com/Jalgoz" target="_blank">José Lozada</a>. Diseño de <a class="link" href="https://codingheroes.io/" target="_blank">Jonas Schmedtmann</a>.
426426
</p>
427427
</footer>
428428
</body>

sass/layout/_footer.scss

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,23 @@
5151
text-align: center;
5252
width: 70%;
5353
}
54+
55+
.link {
56+
&:link,
57+
&:visited {
58+
display: inline-block;
59+
text-decoration: none;
60+
color: currentColor;
61+
text-transform: uppercase;
62+
background-color: $color-secondary;
63+
padding: 4px;
64+
transition: all .2s;
65+
}
66+
67+
&:hover,
68+
&:active {
69+
color: $color-primary;
70+
box-shadow: 1px 3px 5px rgba(white, .4);
71+
transform: rotate(-5deg) scale(1.1);
72+
}
73+
}

0 commit comments

Comments
 (0)