FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
OpenMark-Blog/src/app/globals.css at main · softpython2884/OpenMark-Blog · GitHub
softpython2884
/
OpenMark-Blog
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
OpenMark-Blog
/
src
/
app
/
globals.css
Copy path
More file actions
More file actions
Latest commit
History
History
History
90 lines (84 loc) · 2.3 KB
Breadcrumbs
OpenMark-Blog
/
src
/
app
/
globals.css
Copy path
File metadata and controls
90 lines (84 loc) · 2.3 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
@tailwind
base;
@tailwind
components;
@tailwind
utilities;
@layer
base {
:
root
{
--background
:
0
0
%
96.1
%
;
/* #f5f5f5 */
--foreground
:
224
71
%
4
%
;
--card
:
0
0
%
100
%
;
--card-foreground
:
224
71
%
4
%
;
--popover
:
0
0
%
100
%
;
--popover-foreground
:
224
71
%
4
%
;
--primary
:
217
91
%
60
%
;
--primary-foreground
:
210
40
%
98
%
;
--secondary
:
210
40
%
96.1
%
;
--secondary-foreground
:
222.2
47.4
%
11.2
%
;
--muted
:
210
40
%
96.1
%
;
--muted-foreground
:
215.4
16.3
%
46.9
%
;
--accent
:
205
90
%
88
%
;
/* #b0e2ff */
--accent-foreground
:
222.2
47.4
%
11.2
%
;
--destructive
:
0
84.2
%
60.2
%
;
--destructive-foreground
:
210
40
%
98
%
;
--border
:
214.3
31.8
%
91.4
%
;
--input
:
214.3
31.8
%
91.4
%
;
--ring
:
217
91
%
60
%
;
--radius
:
0.5
rem
;
--header-background
:
hsl
(
var
(
--background
)
/
0.75
);
--header-border
:
hsl
(
var
(
--border
));
}
.
dark
{
--background
:
222
47
%
6
%
;
--foreground
:
210
40
%
98
%
;
--card
:
222
47
%
8
%
;
--card-foreground
:
210
40
%
98
%
;
--popover
:
222
47
%
6
%
;
--popover-foreground
:
210
40
%
98
%
;
--primary
:
217.2
91.2
%
59.8
%
;
--primary-foreground
:
210
40
%
98
%
;
--secondary
:
217.2
32.6
%
17.5
%
;
--secondary-foreground
:
210
40
%
98
%
;
--muted
:
217.2
32.6
%
17.5
%
;
--muted-foreground
:
215.4
16.3
%
56.9
%
;
--accent
:
217.2
32.6
%
25.5
%
;
--accent-foreground
:
210
40
%
98
%
;
--destructive
:
0
62.8
%
30.6
%
;
--destructive-foreground
:
210
40
%
98
%
;
--border
:
217.2
32.6
%
17.5
%
;
--input
:
217.2
32.6
%
17.5
%
;
--ring
:
217.2
91.2
%
59.8
%
;
--header-background
:
hsl
(
var
(
--background
)
/
0.75
);
--header-border
:
hsl
(
var
(
--border
));
}
}
@layer
base {
*
{
@apply
border-border;
}
body
{
@apply
bg-background text-foreground;
}
.
prose
a
{
@apply
text-primary hover:underline;
}
/* Custom Scrollbar */
::
-webkit-scrollbar
{
width
:
8
px
;
height
:
8
px
;
}
::
-webkit-scrollbar-track
{
background-color
:
hsl
(
var
(
--background
)
/
0.5
);
}
::
-webkit-scrollbar-thumb
{
background-color
:
hsl
(
var
(
--primary
)
/
0.5
);
border-radius
:
10
px
;
transition
:
background-color
0.2
s
ease-in-out;
}
::
-webkit-scrollbar-thumb
:
hover
{
background-color
:
hsl
(
var
(
--primary
));
}
/* For Firefox */
html
{
scrollbar-width
:
thin;
scrollbar-color
:
hsl
(
var
(
--primary
))
hsl
(
var
(
--background
));
}
}
Back
|
FazBrowse Home
|
New Git URL