systems-obscure/src/index.css

95 lines
1.6 KiB
CSS
Raw Normal View History

2025-12-29 19:11:22 +00:00
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");
2025-07-07 17:08:27 +01:00
@import "./styles/_variables.css";
@import "tailwindcss";
@import "tw-animate-css";
2025-11-04 19:06:51 +00:00
* {
2025-12-29 19:11:22 +00:00
outline-color: color-mix(in srgb, var(--ring) 50%, transparent);
2025-11-04 19:06:51 +00:00
}
html {
2025-12-29 19:11:22 +00:00
font-family: var(--font-sansserif);
2025-11-04 19:06:51 +00:00
}
body {
2025-12-29 19:11:22 +00:00
background-color: var(--background);
color: var(--foreground);
2025-11-04 19:06:51 +00:00
}
2025-11-17 20:13:17 +00:00
.condensed {
2025-12-29 19:11:22 +00:00
font-family: "Inter";
2025-11-17 20:13:17 +00:00
}
figcaption {
2025-12-29 19:11:22 +00:00
font-weight: 500;
font-family: "Inter";
2025-11-17 20:13:17 +00:00
}
2025-11-04 19:06:51 +00:00
h1 {
2025-12-29 19:11:22 +00:00
color: var(--color-orange-light);
font-family: "Inter";
2025-11-04 19:06:51 +00:00
}
h2 {
2025-12-29 19:11:22 +00:00
font-family: "Inter";
color: var(--color-green-light);
2025-12-05 17:05:46 +00:00
}
.h2-home {
2025-12-29 19:11:22 +00:00
font-family: "Inter";
font-weight: 600;
2025-11-04 19:06:51 +00:00
}
2025-11-17 20:13:17 +00:00
h3 {
2025-12-29 19:11:22 +00:00
font-family: "Inter";
font-weight: 600 !important;
2025-11-17 20:13:17 +00:00
}
2025-11-04 19:06:51 +00:00
.monospaced-font {
2025-12-29 19:11:22 +00:00
font-family: "iA Writer Mono";
2025-11-04 19:06:51 +00:00
}
2025-11-04 19:06:51 +00:00
.scanlined {
2025-12-29 19:11:22 +00:00
position: relative;
/* Add this */
2025-11-04 19:06:51 +00:00
}
.scanlined::after {
2025-12-29 19:11:22 +00:00
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(rgba(0, 0, 0, 0.4) 1px, transparent 1px);
background-size: 2px 2px;
background-repeat: repeat;
pointer-events: none;
z-index: 9999;
/* Might want to lower this too */
2025-11-04 19:06:51 +00:00
}
code {
2025-12-29 19:11:22 +00:00
font-family: var(--font-monospaced);
2025-11-04 19:06:51 +00:00
}
p code {
2025-12-29 19:11:22 +00:00
color: var(--foreground);
background: #504945;
font-size: 14px;
padding: 0.2rem 0.3rem;
border-radius: var(--radius);
font-weight: 500;
2025-11-04 19:06:51 +00:00
}
.shiki {
2025-12-29 19:11:22 +00:00
padding: 1rem 1.2rem;
border-radius: 0;
overflow-x: auto;
margin: 1.5rem 0;
line-height: 1.3;
/* counter-reset: line; */
font-family: var(--font-monospaced) !important;
font-size: 14px !important;
2025-11-04 19:06:51 +00:00
}