-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
/
Copy pathindex.module.css
93 lines (84 loc) · 1.32 KB
/
index.module.css
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
.overlay {
@apply fixed
inset-0
flex
justify-center
bg-white/40
backdrop-blur-[2px]
dark:bg-neutral-950/40;
.content {
@apply relative
mx-4
my-4
inline-flex
w-full
flex-col
overflow-y-auto
rounded
border
border-neutral-200
bg-white
p-8
focus:outline-none
dark:bg-neutral-950
sm:my-20
lg:max-w-[900px]
xl:p-12
xs:p-6;
}
.close {
@apply absolute
right-3
top-3
block
size-6
cursor-pointer
rounded
focus:outline-none
focus:ring-2
focus:ring-neutral-200
dark:focus:ring-neutral-900;
}
.title {
@apply mb-2
text-3xl
font-semibold
text-neutral-900
dark:text-white;
}
.description {
@apply mb-4
text-lg
font-regular
text-neutral-800
dark:text-neutral-200;
}
.authors {
@apply mb-8
flex
flex-wrap
items-center
gap-4;
a {
@apply flex
items-center
gap-1
text-xs
text-neutral-600
underline
visited:text-neutral-600;
}
svg {
@apply size-3
text-neutral-600;
}
}
.wrapper main {
@apply flex
flex-col
gap-4;
pre {
@apply overflow-auto;
}
}
}