change styles, open links in new tab

This commit is contained in:
2025-03-29 19:25:34 -05:00
parent 02710eb544
commit 14bc71e184
2 changed files with 11 additions and 10 deletions
+7 -7
View File
@@ -87,21 +87,21 @@ body {
width: 100%;
color: black;
min-height: 64px;
border-radius: 1px;
padding-right: 44px;
padding-left: 44px;
color: inherit;
text-decoration: none;
border: 3px solid white;
box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.9);
transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
border: 2px solid #a9a9b3;
box-shadow: 10px 10px 0 rgb(0, 0, 0);
transition: transform 0.075s ease-in-out, box-shadow 0.075s ease-in-out;
}
.link:hover,
.link:focus {
color: white;
background-color: transparent;
transform: translateY(6px);
box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.9);
background-color: rgba(0, 0, 0, 0.5);
transform: translateY(2px);
box-shadow: 8px 8px 0 rgb(0, 0, 0);
border-color: white;
}