Caching and styling

This commit is contained in:
2023-02-19 15:16:39 +11:00
parent 6ad4f75525
commit c5d8e435a7
5 changed files with 36 additions and 6 deletions

View File

@@ -1127,6 +1127,10 @@ video {
border-top-width: 4px;
}
.border-b-2 {
border-bottom-width: 2px;
}
.border-solid {
border-style: solid;
}
@@ -1141,6 +1145,10 @@ video {
border-color: rgb(156 163 175 / var(--tw-border-opacity));
}
.border-transparent {
border-color: transparent;
}
.bg-blue-400 {
--tw-bg-opacity: 1;
background-color: rgb(96 165 250 / var(--tw-bg-opacity));
@@ -1214,6 +1222,10 @@ video {
font-weight: 700;
}
.font-semibold {
font-weight: 600;
}
.uppercase {
text-transform: uppercase;
}
@@ -1288,18 +1300,24 @@ video {
font-family: "Rubik";
src: url("/assets/Rubik-VariableFont_wght.ttf") format("truetype");
font-display: swap;
}
@font-face {
font-family: "JetBrainsMono";
src: url("/assets/JetBrainsMono-VariableFont_wght.ttf") format("truetype");
font-display: swap;
}
@font-face {
font-family: "Karla";
src: url("/assets/Karla-VariableFont_wght.ttf") format("truetype");
font-display: swap;
}
* {
@@ -1367,11 +1385,20 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
color: rgb(30 58 138 / var(--tw-text-opacity));
}
.hover\:border-b-2:hover {
border-bottom-width: 2px;
}
.hover\:border-blue-800:hover {
--tw-border-opacity: 1;
border-color: rgb(30 64 175 / var(--tw-border-opacity));
}
.hover\:border-blue-600:hover {
--tw-border-opacity: 1;
border-color: rgb(37 99 235 / var(--tw-border-opacity));
}
.hover\:bg-blue-800:hover {
--tw-bg-opacity: 1;
background-color: rgb(30 64 175 / var(--tw-bg-opacity));