forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.module.css
81 lines (71 loc) · 1.26 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
.root {
@apply w-full
rounded
border
border-neutral-900
bg-neutral-950;
.content {
@apply m-0
p-4;
& > code {
@apply font-ibm-plex-mono
font-regular
grid
overflow-x-auto
bg-transparent
p-0
text-sm
leading-snug
text-neutral-400
[counter-reset:line];
& > [class='line'] {
@apply relative
min-w-0
pl-8;
&:not(:empty:last-child)::before {
@apply inline-block
content-[''];
}
&:not(:empty:last-child)::after {
@apply w-4.5
font-ibm-plex-mono
absolute
left-0
top-0
mr-4
text-right
text-neutral-600
[content:counter(line)]
[counter-increment:line];
}
}
}
}
& > .footer {
@apply flex
items-center
justify-between
border-t
border-t-neutral-900
px-4
py-3
text-sm
font-medium;
& > .language {
@apply text-neutral-400;
}
& > .action {
@apply px-3
py-1.5
font-medium;
}
}
}
.notification {
@apply flex
items-center
gap-3;
}
.icon {
@apply size-4;
}