File size: 3,730 Bytes
c09f67c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | @tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--font-hedvig-sans: "Hedvig Letters Sans", system-ui, sans-serif;
--font-hedvig-serif: "Hedvig Letters Serif", Georgia, serif;
/* Light mode syntax highlighting (clear differentiation like dark mode) */
--sh-class: #171717;
--sh-identifier: #171717;
--sh-sign: #707070;
--sh-string: #4a4a4a;
--sh-keyword: #4a4a4a;
--sh-comment: #666666;
--sh-jsxliterals: #171717;
--sh-property: #4a4a4a;
--sh-entity: #4a4a4a;
}
.dark {
/* Dark mode syntax highlighting (monochrome) */
--sh-class: #ffffff;
--sh-identifier: #ffffff;
--sh-sign: #8996a3;
--sh-string: #a7a7a7;
--sh-keyword: #a7a7a7;
--sh-comment: #878787;
--sh-jsxliterals: #ffffff;
--sh-property: #a7a7a7;
--sh-entity: #a7a7a7;
}
@keyframes pulse-glow {
0%,
100% {
opacity: 0.2;
transform: scale(1);
box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
}
50% {
opacity: 0.4;
transform: scale(1.2);
box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}
}
@keyframes fadeInBlur {
from {
opacity: 0;
filter: blur(6px);
}
to {
opacity: 1;
filter: blur(0px);
}
}
@keyframes fadeInScale {
from {
opacity: 0;
transform: scale(0.9);
}
to {
opacity: 1;
transform: scale(1);
}
}
@layer utilities {
.bg-background-semi-transparent {
position: relative;
}
.bg-background-semi-transparent::before {
content: "";
position: absolute;
inset: 0;
background-color: hsl(var(--background));
opacity: 0.8;
z-index: -1;
pointer-events: none;
}
}
/* Updates/Blog styles */
.updates p {
min-height: 1.87em;
margin-top: 1px;
margin-bottom: 1px;
padding: 3px 2px;
}
.updates h2 {
font-size: 26px;
margin-top: 0.8em;
margin-bottom: 10px;
font-weight: 500;
}
.updates h4 {
display: block;
font-weight: 600;
color: var(--text-primary);
margin-top: 15px;
}
.updates h3 {
font-size: 1.25em;
margin-top: 0.8em;
margin-bottom: 1px;
font-weight: 500;
}
.updates p,
.updates li {
color: #707070;
}
.updates ul li {
margin-top: 1px;
margin-bottom: 1px;
padding-left: 12px;
padding-top: 3px;
padding-bottom: 2px;
}
.updates ul {
list-style-type: disc;
list-style-position: inside;
}
.updates p code span {
font-family: var(--font-geist-mono);
color: #eb5757;
font-size: 85%;
font-weight: 600;
}
.updates p code {
border-radius: 4px;
background: hsla(44, 6%, 50%, 0.15);
padding: 0 0.4em 3px 0.4em;
line-height: normal;
}
.updates a {
text-decoration: underline;
}
.updates blockquote p {
margin: 7px 2px;
padding-left: 14px;
padding-right: 14px;
border-left: 3px solid;
color: hsl(var(--foreground));
}
.updates b,
.updates strong {
font-weight: 500;
}
/* App description styles */
.app-description strong {
display: block;
padding-top: 1.5em;
padding-bottom: 0.5em;
color: hsl(var(--foreground));
}
.app-description strong:first-child {
padding-top: 0;
}
.app-description ul,
.app-description ol {
padding-bottom: 1em;
}
pre::-webkit-scrollbar {
display: none;
}
pre {
-ms-overflow-style: none;
scrollbar-width: none;
overflow: auto;
}
pre code {
font-size: 13px;
font-weight: 500;
}
.sh__line,
pre code span,
pre code div,
pre span,
pre div {
background: transparent;
background-color: transparent;
}
/* Respect user's motion preferences for accessibility and performance */
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms;
animation-iteration-count: 1;
transition-duration: 0.01ms;
scroll-behavior: auto;
}
/* Keep essential animations but simplify */
video {
animation: none;
}
}
|