forked from skillrecordings/egghead-next
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
87 lines (70 loc) · 1.47 KB
/
index.css
File metadata and controls
87 lines (70 loc) · 1.47 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
@tailwind base;
@tailwind components;
@tailwind utilities;
code::before {
content: none !important;
}
code::after {
content: none !important;
}
mark {
@apply bg-pink-100;
}
code {
font-size: 80% !important;
}
pre > code {
font-size: 90% !important;
}
pre {
line-height: 1.5 !important;
}
#__next {
@apply flex flex-col min-h-screen text-gray-900;
}
.bmpui-ui-watermark {
display: none !important;
}
.bmpui-ui-titlebar {
display: none;
}
/* Code block styles */
.prose pre {
@apply sm:mx-0 -mx-5 sm:rounded-md rounded-none;
}
pre {
@apply sm:mx-0 -mx-5 sm:rounded-md rounded-none;
}
#__next {
.prose-reset {
* {
font-size: inherit !important;
font-weight: inherit !important;
margin: 0 !important;
padding: 0 !important;
}
}
}
/*
This will hide the focus indicator if the element receives focus via the mouse,
but it will still show up on keyboard focus.
*/
.js-focus-visible :focus:not(.focus-visible) {
outline: none;
}
/* Algolia Pagination */
.ais-Pagination-link {
@apply text-gray-700 border-gray-200 bg-gray-200 transition-all ease-out duration-150 !important;
}
.ais-Pagination-link:hover {
@apply bg-gray-300 text-gray-800 !important;
}
.ais-Pagination-link--selected {
@apply bg-blue-600 border-blue-600 text-white !important;
}
.ais-Pagination-link--selected:hover {
@apply bg-blue-700 text-white !important;
}
.ais-ClearRefinements-button {
@apply bg-transparent text-blue-600 text-sm !important;
}