/[sudobot]/trunk/docs/styles/globals.css
ViewVC logotype

Contents of /trunk/docs/styles/globals.css

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (show annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: text/css
File size: 1963 byte(s)
chore: add trunk
1 @tailwind base;
2 @tailwind components;
3 @tailwind utilities;
4
5 /*
6 :root {
7 --foreground-rgb: 0, 0, 0;
8 --background-start-rgb: 214, 219, 220;
9 --background-end-rgb: 255, 255, 255;
10 }
11 */
12
13 :root {
14 --foreground-rgb: 255, 255, 255;
15 --background-start-rgb: 0, 0, 0;
16 --background-end-rgb: 0, 0, 0;
17 scroll-behavior: smooth;
18 }
19
20 body {
21 color: rgb(var(--foreground-rgb));
22 background: linear-gradient(
23 to bottom,
24 transparent,
25 rgb(var(--background-end-rgb))
26 )
27 rgb(var(--background-start-rgb));
28 overflow-x: hidden;
29 }
30
31 @media (max-width: 970px) {
32 .desktop {
33 display: none !important;
34 }
35 }
36
37 @media (min-width: 971px) {
38 .mobile {
39 display: none !important;
40 }
41 }
42
43 ::-webkit-scrollbar {
44 width: 5px;
45 height: 5px;
46 }
47
48 ::-webkit-scrollbar-thumb {
49 width: 5px;
50 background: #ddd;
51 border-radius: 5px;
52 }
53
54 #article pre:not(.no-auto-font),
55 #article code:not(.no-auto-font) {
56 font-family: "JetBrainsMono NFM", "JetBrains Mono", "Ubuntu Mono", "SF Mono", "Consolas", "Droid Mono",
57 "Roboto Mono", "Courier New", Courier, monospace;
58 }
59
60 #article :is(h1, h2, h3, h4, h5, h6):hover .autolink {
61 display: inline-block;
62 margin-bottom: -5px;
63 }
64
65 .autolink {
66 height: 1em;
67 width: 1em;
68 display: none;
69 filter: invert(1);
70 margin-left: 10px;
71 opacity: 0.8;
72 background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20stroke-width%3D%221.5%22%20stroke%3D%22currentColor%22%20class%3D%22w-6%20h-6%22%3E%0A%3Cpath%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22M13.19%208.688a4.5%204.5%200%200%201%201.242%207.244l-4.5%204.5a4.5%204.5%200%200%201-6.364-6.364l1.757-1.757m13.35-.622%201.757-1.757a4.5%204.5%200%200%200-6.364-6.364l-4.5%204.5a4.5%204.5%200%200%200%201.242%207.244%22%20%2F%3E%0A%3C%2Fsvg%3E);
73 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26