feat: Adds ci workflow.
Some checks failed
CI / release (push) Failing after 3m0s

This commit is contained in:
2025-04-03 11:57:22 -04:00
parent 4d099909b6
commit 5ea3e3bd86
9 changed files with 124 additions and 29 deletions

View File

@@ -33,6 +33,14 @@
--green: #a6e3a1;
}
/* Reset */
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
/* HEADER */
.header {
display: flex;
@@ -92,6 +100,8 @@
padding: 10px;
}
/* Nav */
nav a:hover {
@apply border-b-2 border-orange-400;
}
@@ -99,16 +109,18 @@ nav a.active {
@apply border-b-2 border-orange-400;
}
/* Body */
body {
@apply bg-slate-900 font-avenir;
@apply bg-slate-900 font-avenir text-xl;
}
h1 {
@apply text-4xl;
@apply text-6xl pb-2;
}
h2 {
@apply text-3xl mb-4 pt-4;
@apply text-5xl mb-8 pt-4;
color: var(--green);
}
h3 {
@@ -119,26 +131,27 @@ p {
@apply mb-8;
}
img {
padding-top: 10px;
padding-bottom: 10px;
}
article h2 {
@apply border-b-2 border-slate-200;
}
article {
@apply font-avenir text-lg;
article a {
@apply text-orange-400;
}
article a:hover {
@apply border-b border-green-400;
}
article code {
@apply bg-amber-700;
}
.container {
@apply px-10;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
.container img {
padding-top: 10px;
padding-bottom: 10px;
}

File diff suppressed because one or more lines are too long

View File

@@ -9,7 +9,7 @@ https://prismjs.com/download.html#themes=prism-tomorrow&languages=markup+css+cli
code[class*="language-"],
pre[class*="language-"] {
color: #ccc;
background: none;
background: #121416;
font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
font-size: 1em;
text-align: left;