This repository was archived by the owner on May 20, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathtailwind.css
More file actions
116 lines (101 loc) · 2.7 KB
/
Copy pathtailwind.css
File metadata and controls
116 lines (101 loc) · 2.7 KB
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
@import './docsearch.css';
@import './codeTheme.css';
/* primary and secondary are defined in tailwind.config */
/* use this vscode extension to see the hsl colors in the editor: https://marketplace.visualstudio.com/items?itemName=meouwu.css-var-color-decorator */
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 240 5.9% 10%;
--foreground-light: theme('colors.zinc.300');
--card: 0 0% 100%;
--card-foreground: 240 10% 3.9%;
--popover: 0 0% 100%;
--popover-foreground: 240 10% 3.9%;
--primary-foreground: 0 0% 98%;
--secondary-foreground: 240 5.9% 10%;
--muted: 240 4.8% 95.9%;
--muted-foreground: 240 3.8% 46.1%;
--accent: 240 4.8% 95.9%;
--accent-foreground: 240 5.9% 10%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 0 0% 98%;
--border: 240 5.9% 90%;
--input: 240 5.9% 90%;
--ring: 240 10% 3.9%;
--chart-1: 12 76% 61%;
--chart-2: 173 58% 39%;
--chart-3: 197 37% 24%;
--chart-4: 43 74% 66%;
--chart-5: 27 87% 67%;
--radius: 0.5rem;
--header-height: 49px;
}
[inert] ::-webkit-scrollbar {
display: none;
}
.dark {
--background: 236 23% 12%;
--foreground: 0 0% 98%;
--foreground-light: theme('colors.zinc.300');
--card: 240 10% 3.9%;
--card-foreground: 0 0% 98%;
--code: 250 27% 17%;
--popover: 240 10% 3.9%;
--popover-foreground: 0 0% 98%;
--primary-foreground: 0 0% 98%;
--secondary-foreground: 0 0% 98%;
--muted: 240 3.7% 15.9%;
--muted-foreground: 240 5% 64.9%;
--accent: 240 3.7% 15.9%;
--accent-foreground: 0 0% 98%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 0 0% 98%;
--border: 240 5.9% 27.5%;
--input: 240 3.7% 15.9%;
--ring: 240 4.9% 83.9%;
--chart-1: 220 70% 50%;
--chart-2: 160 60% 45%;
--chart-3: 30 80% 55%;
--chart-4: 280 65% 60%;
--chart-5: 340 75% 55%;
}
}
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}
.video-container {
@apply relative w-full overflow-hidden rounded-lg border border-gray-700/50 pb-[56.25%];
}
.video-container iframe {
@apply absolute left-0 top-0 h-full w-full rounded-xl border-0;
}
.cloud-deploy-terminal .Terminal-window {
@apply border-gray-700;
}
.cloud-deploy-terminal .Terminal-cursor {
@apply bg-purple-400;
}
.md-content-header {
@apply scroll-mt-24;
}
.md-content-header > a {
@apply ml-1 inline-block opacity-0 transition-opacity;
}
.md-content-header:hover > a {
@apply opacity-100;
}
/* style summary and details elements */
summary {
@apply cursor-pointer;
}
summary::marker {
@apply text-xl text-secondary-300;
}