-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (41 loc) · 800 Bytes
/
style.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
:root {
--slidev-transition-duration: 0.2s;
}
@media( min-width: 1280px) {
#page-root > #slide-container > #slide-content {
transform: translate(-50%, -50%) scale(1.3) !important;
}
}
th:nth-child(1),
td:nth-child(1) {
@apply w-50;
}
th:nth-child(1),
td:nth-child(2) {
@apply w-60;
}
th:nth-child(3), th:nth-child(4),
td:nth-child(3), td:nth-child(4) {
@apply text-center;
}
.grid-cols-2 {
@apply gap-8;
}
sky {
@apply not-italic text-sky-500 font-semibold;
}
mono {
@apply font-mono;
}
a {
@apply whitespace-nowrap;
}
kbd {
@apply relative -top-[2px] mx-1 px-2;
@apply inline-flex items-center justify-center;
@apply bg-neutral-50 dark:bg-neutral-800 ;
@apply border font-mono;
border-radius: 10px !important;
min-height: 2.2em;
min-width: 2.2em;
}