add skill buttons and more

This commit is contained in:
Zoe
2022-11-28 22:12:48 -06:00
parent 012091a865
commit 3b775e1eba
9 changed files with 220 additions and 13 deletions

View File

@@ -1,5 +1,6 @@
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap');
@import url('https://fonts.googleapis.com/css?family=Inter&display=swap');
@tailwind base;
@tailwind components;
@@ -25,6 +26,10 @@ header {
font-family: 'Red Hat Display', sans-serif;
}
.font-inter {
font-family: 'Inter';
}
.love {
text-decoration: underline;
text-decoration-color: #EB0066;
@@ -55,11 +60,15 @@ header {
animation-timing-function: linear;
}
.love:hover::after, .love:active::after, .love:focus::after {
.love:hover::after,
.love:active::after,
.love:focus::after {
opacity: 1;
}
.love:hover::before, .love:active::before, .love:focus::before {
.love:hover::before,
.love:active::before,
.love:focus::before {
opacity: 1;
}
@@ -109,4 +118,8 @@ header {
.main-content {
column-count: 12;
}
.bg-grid-pink-600\/\[0\.05\] {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='rgb(90 43 136 / 0.05)'%3e%3cpath d='M0 .5H31.5V32'/%3e%3c/svg%3e");
}