-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy path_widgets.scss
More file actions
262 lines (219 loc) · 5.49 KB
/
_widgets.scss
File metadata and controls
262 lines (219 loc) · 5.49 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
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
// Mobile-first responsive styling for widget tabs
.jupyter-widget-header {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
align-items: center;
margin: 0 0 16px 0;
@media (max-width: 480px) {
flex-direction: column;
align-items: flex-start;
gap: 12px;
> span:last-child {
align-self: flex-end;
}
}
h2 {
display: inline;
}
}
.img-scaling {
height: 32px;
vertical-align: top;
@media (max-width: 480px) {
height: 28px;
}
}
.gallery-title {
font-size: 32px;
height: 32px;
line-height: 32px;
@media (max-width: 768px) {
font-size: 26px;
}
@media (max-width: 480px) {
font-size: 22px;
}
}
.support-paragraph {
font-size: 15px;
line-height: 1.5;
text-align: center;
max-width: 630px;
margin: 0 auto 16px auto;
@media (max-width: 768px) {
padding: 0 20px;
font-size: 14px;
}
}
.section-header {
margin: 12px auto 8px;
text-align: center;
}
.section-icon {
display: block;
margin: 2em auto 0 auto;
max-width: 60px;
max-height: 60px;
}
// Responsive tabs - fixes the two-column layout on mobile
.tabbable.tabs-left {
display: flex;
@media (max-width: 991px) {
flex-direction: column;
}
}
// Tab navigation
.tabbable.tabs-left > .nav-tabs {
border-bottom: 0;
border-right: 1px solid #ddd;
flex: 0 0 240px; // Fixed width on desktop
margin-right: 20px;
@media (max-width: 991px) {
flex: none;
width: 100%;
border-right: 0;
border-bottom: 1px solid #ddd;
margin-right: 0;
margin-bottom: 20px;
display: flex;
flex-direction: row;
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
padding-bottom: 1px; // Prevent cutting off focus ring
}
> li {
float: none;
margin-bottom: 2px;
@media (max-width: 991px) {
float: left;
margin-bottom: 0;
margin-right: 2px;
flex: 0 0 auto;
}
> a {
display: block;
padding: 10px 15px;
border-radius: 4px 0 0 4px;
margin-right: -1px;
border: 1px solid transparent;
white-space: normal;
min-width: 200px;
@media (max-width: 991px) {
min-width: auto;
border-radius: 4px 4px 0 0;
margin-right: 0;
padding: 10px 12px;
white-space: nowrap;
}
@media (max-width: 480px) {
padding: 8px 10px;
font-size: 14px;
}
small {
display: block;
font-size: 12px;
color: #6c757d;
margin-top: 2px;
@media (max-width: 991px) {
display: none; // Hide descriptions on mobile to save space
}
}
&:hover,
&:focus {
border-color: #eeeeee #dddddd #eeeeee #eeeeee;
text-decoration: none;
}
&.active {
border-color: #ddd transparent #ddd #ddd;
background-color: #fff;
@media (max-width: 991px) {
border-color: #ddd #ddd transparent #ddd;
}
small {
color: #495057;
}
}
}
}
}
// Tab content area
.tabbable.tabs-left .tab-content {
flex: 1;
min-width: 0; // Prevents flex overflow issues
> .tab-pane {
display: none;
&.active {
display: block;
min-height: 1100px;
@media (max-width: 991px) {
min-height: auto;
padding: 20px 0;
}
}
}
// Code block responsiveness
pre.highlight {
@media (max-width: 768px) {
font-size: 13px;
white-space: pre-wrap;
word-break: break-all;
overflow-x: auto;
}
}
// Installation instructions
h3 {
@media (max-width: 768px) {
font-size: 18px;
margin-top: 24px;
}
}
p {
@media (max-width: 768px) {
font-size: 14px;
}
}
// Widget container responsiveness
.jupyter-widget-view,
.widget-subarea {
@media (max-width: 768px) {
max-width: 100%;
overflow-x: auto;
}
}
}
// Binder and GitHub icons section
.jupyter-widget-header > span:last-child {
display: flex;
gap: 8px;
@media (max-width: 480px) {
gap: 6px;
}
a {
display: inline-block;
transition: opacity 0.2s;
&:hover {
opacity: 0.8;
}
}
}
// Responsive table styling for any included tables
table {
@media (max-width: 768px) {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
// Fix for embedded widgets
.jupyter-widgets {
@media (max-width: 768px) {
max-width: 100% !important;
}
}
// Ensure iframes (like maps) are responsive
iframe {
max-width: 100%;
}