-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocumentation.css
177 lines (136 loc) · 4.19 KB
/
documentation.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
.Pinpoint.Documentation.Outline.Wrapper {
@apply flex flex-col space-y-4;
}
.Pinpoint.Documentation.Outline.Item {
@apply text-base;
}
.Pinpoint.Documentation.Outline.Item.active {
@apply font-bold;
}
.Pinpoint.Documentation.Page.Home,
.Pinpoint.Documentation.Page.SearchResults {
@apply flex flex-col h-screen;
}
.Pinpoint.Documentation.Page.Home .Pinpoint.Documentation.Page.Content,
.Pinpoint.Documentation.Page.SearchResults .Pinpoint.Documentation.Page.Content {
@apply flex w-full;
}
.Pinpoint.Documentation.Page.Home .Pinpoint.Documentation.Outline.Wrapper {
@apply mr-24 ml-4;
}
.Pinpoint.Documentation.Page.Home .Pinpoint.Documentation.Outline.Item,
.Pinpoint.Documentation.Page.Home .SubMenu .SubItem {
@apply whitespace-nowrap text-black dark:text-white;
}
.Pinpoint.documentationBodyWrapper {
@apply flex-grow mb-12;
}
.Pinpoint.Documentation.Outline.Wrapper .SubMenu {
@apply ml-10 flex flex-col space-y-2 mt-2;
}
.Pinpoint.Documentation.Outline.Wrapper .SubMenu .SubItem {
@apply whitespace-nowrap;
}
.Pinpoint.Documentation.Outline .SubItem.active {
@apply font-bold;
}
.Pinpoint.Documentation.Outline.Wrapper .Parent .Top {
@apply flex items-center;
}
.Pinpoint.Documentation.Outline.Wrapper .Parent .Top .toggleControl {
@apply text-black dark:text-white;
}
.Pinpoint.Documentation.Outline.Wrapper .Parent .Top .spacer {
width: 12px;
height: 12px;
@apply mr-2;
}
.Pinpoint.Documentation.Outline.Wrapper .Parent .Top .toggleControl {
width: 12px;
height: 12px;
@apply mr-2 cursor-pointer;
}
.Pinpoint.Documentation.Page.Home .Pinpoint.Documentation.Page.Content article {
@apply flex-grow;
}
.Pinpoint.Documentation.Title {
@apply flex items-center;
}
.Pinpoint.Documentation.Title.clickable {
@apply cursor-pointer;
}
.Pinpoint.Documentation.Title .text {
@apply ml-2 text-lg text-black dark:text-white;
}
.Pinpoint.Documentation.Page.Content .rightWrapper {
@apply flex-grow w-0;
}
.Pinpoint.Documentation.Page.Content .rightWrapper .resultsText {
@apply text-2xl pb-2 mt-4 sm:mt-0;
}
.Pinpoint.Documentation.Page.SearchResults .Pinpoint.Documentation.Page.Content .rightWrapper {
@apply ml-0 sm:ml-12 space-y-6;
}
.Pinpoint.Documentation.Page.SearchResults .Pinpoint.Documentation.Page.Content .leftWrapper .back {
@apply ml-8 flex items-center text-black dark:text-white;
}
.Pinpoint.Documentation.Page.SearchResults .Pinpoint.Documentation.Page.Content .leftWrapper .back .Internal.Link {
@apply flex items-center;
}
.Pinpoint.Documentation.Page.SearchResults .Pinpoint.Documentation.Page.Content .leftWrapper .back .text {
@apply ml-2;
}
.Pinpoint.Documentation.Page.Content .rightWrapper .Pinpoint.Pagination {
@apply mt-8;
}
.Pinpoint.Documentation.Page.Content .leftWrapper {
@apply flex flex-col;
}
.Pinpoint.Documentation.Page.Content .leftWrapper .Pinpoint.Search.Bar {
@apply ml-8 mb-8 mt-1;
}
/* Hide the center of the header when mobile menu is open */
.Pinpoint.Documentation.Page .Pinpoint.Header .center {
@apply hidden sm:block;
}
/* Hide the right side when mobile menu is open */
.Pinpoint.Documentation.Page.Content .rightWrapper {
@apply block;
}
.Pinpoint.Documentation.Page.Content .rightWrapper.open {
@apply hidden sm:block;
}
/* Hide the left sidethe mobile menu is closed */
.Pinpoint.Documentation.Page.Content .leftWrapper {
@apply hidden sm:block;
}
.Pinpoint.Documentation.Page.Content .leftWrapper.open {
@apply block w-full sm:w-auto;
}
.Pinpoint.Documentation.Page.Content .leftWrapper.open .Search.Bar {
@apply w-full sm:w-48 ml-0 sm:ml-8;
}
.Pinpoint.Documentation.Card.wrapper {
@apply flex flex-col rounded-md border-gray-200 hover:bg-gray-100 dark:hover:bg-gray-800 transition border-l-3 pl-4 py-2 text-black dark:text-white;
}
.Pinpoint.Documentation.Card.wrapper .title {
@apply text-lg font-bold;
}
.Pinpoint.Documentation.Card.wrapper .cta {
@apply ml-auto mt-2;
}
.Pinpoint.Documentation.Card.wrapper .clickable {
@apply cursor-pointer;
}
.Pinpoint.Documentation.Page.Content .rightWrapper .empty {
@apply text-2xl font-bold text-center;
}
.Pinpoint.Header .mobileMenuButton {
@apply block sm:hidden;
}
.Pinpoint.Header .mobileMenuButton .icon {
@apply mr-3 text-black dark:text-white;
}
.Pinpoint .mobileMenuWrapper {
@apply ml-8 mt-4 pr-6;
}