-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
110 lines (93 loc) · 2.38 KB
/
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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
@tailwind base;
@tailwind components;
@tailwind utilities;
.nextra-sidebar-container {
z-index: 10;
}
table.nx-block {
display: block !important;
width: 100%;
text-align: left;
border-collapse: separate !important;
border-spacing: 0;
overflow: hidden;
border: 1px solid #efeff5;
transition: background-color 0.3s, border-color 0.3s, color 0.3s;
padding: 0 !important;
font-size: 14px;
scrollbar-gutter: unset !important;
}
:is(.dark table.nx-block) {
border-color: #333334;
}
table.nx-block th {
white-space: nowrap;
transition: background-color 0.3s, border-color 0.3s, color 0.3s;
text-align: inherit;
padding: 11px 15px !important;
vertical-align: inherit;
text-transform: none;
border: 0px solid transparent !important;
font-weight: bold !important;
color: #5c6b77;
background-color: #fbfbfb;
border-bottom: 1px solid #efefef !important;
border-right: 0px solid transparent !important;
}
:is(.dark table.nx-block th) {
background-color: #2d2e31;
border-bottom-color: #333334 !important;
color: rgba(255, 255, 255, 0.9);
}
table.nx-block td:first-child {
width: 1%;
font-weight: 600;
white-space: nowrap;
}
table.nx-block tr {
box-sizing: border-box;
background-clip: padding-box;
transition: background-color 0.3s;
}
table.nx-block tbody tr:hover {
background-color: rgba(60, 90, 100, 0.04) !important;
}
:is(.dark table.nx-block tbody tr:hover) {
background: rgb(38 38 38) !important;
}
table.nx-block tbody tr:hover td {
background: none;
}
table.nx-block td {
transition: background-color 0.3s, border-color 0.3s, color 0.3s;
padding: 12px !important;
color: #595959;
background-color: white;
border: 0px solid transparent !important;
min-width: 110px;
}
:is(.dark table.nx-block td) {
background-color: #111111;
color: rgba(255, 255, 255, 0.9);
}
table.nx-block tr:not(:last-child) td {
border-bottom: 0px solid transparent !important;
}
table.nx-block code {
background: hsl(var(--nextra-primary-hue) 100% 39%/0.05) !important;
color: var(--shiki-color-text);
}
:is(.dark table.nx-block code) {
background: hsla(0, 0%, 100%, 0.1) !important;
}
.nextra-nav-container > nav div:nth-child(1) {
max-height: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="number"] {
-moz-appearance: textfield;
}