Skip to content

Commit 55ff132

Browse files
committed
initial code comment
1 parent 6ab7c36 commit 55ff132

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+25069
-0
lines changed

assets/jupyter-homepage.png

226 KB
Loading

assets/style.css

+334
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,334 @@
1+
body {
2+
font-family: Helvetica, Arial, sans-serif;
3+
font-size: 12px;
4+
/* do not increase min-width as some may use split screens */
5+
min-width: 800px;
6+
color: #999;
7+
}
8+
9+
h1 {
10+
font-size: 24px;
11+
color: black;
12+
}
13+
14+
h2 {
15+
font-size: 16px;
16+
color: black;
17+
}
18+
19+
p {
20+
color: black;
21+
}
22+
23+
a {
24+
color: #999;
25+
}
26+
27+
table {
28+
border-collapse: collapse;
29+
}
30+
31+
/******************************
32+
* SUMMARY INFORMATION
33+
******************************/
34+
35+
#environment td {
36+
padding: 5px;
37+
border: 1px solid #E6E6E6;
38+
}
39+
40+
#environment tr:nth-child(odd) {
41+
background-color: #f6f6f6;
42+
}
43+
44+
/******************************
45+
* TEST RESULT COLORS
46+
******************************/
47+
span.passed, .passed .col-result {
48+
color: green;
49+
}
50+
span.skipped, span.xfailed, span.rerun, .skipped .col-result, .xfailed .col-result, .rerun .col-result {
51+
color: orange;
52+
}
53+
span.error, span.failed, span.xpassed, .error .col-result, .failed .col-result, .xpassed .col-result {
54+
color: red;
55+
}
56+
57+
58+
/******************************
59+
* RESULTS TABLE
60+
*
61+
* 1. Table Layout
62+
* 2. Extra
63+
* 3. Sorting items
64+
*
65+
******************************/
66+
67+
/*------------------
68+
* 1. Table Layout
69+
*------------------*/
70+
71+
#results-table {
72+
border: 1px solid #e6e6e6;
73+
color: #999;
74+
font-size: 12px;
75+
width: 100%
76+
}
77+
78+
#results-table th, #results-table td {
79+
padding: 5px;
80+
border: 1px solid #E6E6E6;
81+
text-align: left
82+
}
83+
#results-table th {
84+
font-weight: bold
85+
}
86+
87+
/*------------------
88+
* 2. Extra
89+
*------------------*/
90+
91+
.log:only-child {
92+
height: inherit
93+
}
94+
.log {
95+
background-color: #e6e6e6;
96+
border: 1px solid #e6e6e6;
97+
color: black;
98+
display: block;
99+
font-family: "Courier New", Courier, monospace;
100+
height: 230px;
101+
overflow-y: scroll;
102+
padding: 5px;
103+
white-space: pre-wrap
104+
}
105+
div.image {
106+
border: 1px solid #e6e6e6;
107+
float: right;
108+
height: 240px;
109+
margin-left: 5px;
110+
overflow: hidden;
111+
width: 320px
112+
}
113+
div.image img {
114+
width: 320px
115+
}
116+
.collapsed {
117+
display: none;
118+
}
119+
.expander::after {
120+
content: " (show details)";
121+
color: #BBB;
122+
font-style: italic;
123+
cursor: pointer;
124+
}
125+
.collapser::after {
126+
content: " (hide details)";
127+
color: #BBB;
128+
font-style: italic;
129+
cursor: pointer;
130+
}
131+
132+
/*------------------
133+
* 3. Sorting items
134+
*------------------*/
135+
.sortable {
136+
cursor: pointer;
137+
}
138+
139+
.sort-icon {
140+
font-size: 0px;
141+
float: left;
142+
margin-right: 5px;
143+
margin-top: 5px;
144+
/*triangle*/
145+
width: 0;
146+
height: 0;
147+
border-left: 8px solid transparent;
148+
border-right: 8px solid transparent;
149+
}
150+
151+
.inactive .sort-icon {
152+
/*finish triangle*/
153+
border-top: 8px solid #E6E6E6;
154+
}
155+
156+
.asc.active .sort-icon {
157+
/*finish triangle*/
158+
border-bottom: 8px solid #999;
159+
}
160+
161+
.desc.active .sort-icon {
162+
/*finish triangle*/
163+
border-top: 8px solid #999;
164+
}
165+
166+
/******************************
167+
* CUSTOM CSS
168+
* /Users/samir/git/nanog78/policies/custom.css
169+
******************************/
170+
171+
body {
172+
font-family: Helvetica, Arial, sans-serif;
173+
font-size: 18px;
174+
/* do not increase min-width as some may use split screens */
175+
min-width: 800px;
176+
color: #999;
177+
}
178+
179+
h1 {
180+
font-size: 24px;
181+
color: black;
182+
}
183+
184+
h2 {
185+
font-size: 16px;
186+
color: black;
187+
}
188+
189+
p {
190+
color: black;
191+
}
192+
193+
a {
194+
color: #999;
195+
}
196+
197+
table {
198+
border-collapse: collapse;
199+
}
200+
201+
/******************************
202+
* SUMMARY INFORMATION
203+
******************************/
204+
205+
#environment td {
206+
padding: 5px;
207+
border: 1px solid #E6E6E6;
208+
}
209+
210+
#environment tr:nth-child(odd) {
211+
background-color: #f6f6f6;
212+
}
213+
214+
/******************************
215+
* TEST RESULT COLORS
216+
******************************/
217+
span.passed, .passed .col-result {
218+
color: green;
219+
}
220+
span.skipped, span.xfailed, span.rerun, .skipped .col-result, .xfailed .col-result, .rerun .col-result {
221+
color: orange;
222+
}
223+
span.error, span.failed, span.xpassed, .error .col-result, .failed .col-result, .xpassed .col-result {
224+
color: red;
225+
}
226+
227+
228+
/******************************
229+
* RESULTS TABLE
230+
*
231+
* 1. Table Layout
232+
* 2. Extra
233+
* 3. Sorting items
234+
*
235+
******************************/
236+
237+
/*------------------
238+
* 1. Table Layout
239+
*------------------*/
240+
241+
#results-table {
242+
border: 1px solid #e6e6e6;
243+
color: #999;
244+
font-size: 1em;
245+
width: 100%
246+
}
247+
248+
#results-table th, #results-table td {
249+
padding: 5px;
250+
border: 1px solid #E6E6E6;
251+
text-align: left
252+
}
253+
#results-table th {
254+
font-weight: bold
255+
}
256+
257+
/*------------------
258+
* 2. Extra
259+
*------------------*/
260+
261+
.log:only-child {
262+
height: inherit
263+
}
264+
.log {
265+
background-color: #e6e6e6;
266+
border: 1px solid #e6e6e6;
267+
color: black;
268+
display: block;
269+
font-family: "Courier New", Courier, monospace;
270+
height: 230px;
271+
overflow-y: scroll;
272+
padding: 5px;
273+
white-space: pre-wrap
274+
}
275+
div.image {
276+
border: 1px solid #e6e6e6;
277+
float: right;
278+
height: 240px;
279+
margin-left: 5px;
280+
overflow: hidden;
281+
width: 320px
282+
}
283+
div.image img {
284+
width: 320px
285+
}
286+
.collapsed {
287+
display: none;
288+
}
289+
.expander::after {
290+
content: " (show details)";
291+
color: #BBB;
292+
font-style: italic;
293+
cursor: pointer;
294+
}
295+
.collapser::after {
296+
content: " (hide details)";
297+
color: #BBB;
298+
font-style: italic;
299+
cursor: pointer;
300+
}
301+
302+
/*------------------
303+
* 3. Sorting items
304+
*------------------*/
305+
.sortable {
306+
cursor: pointer;
307+
}
308+
309+
.sort-icon {
310+
font-size: 0px;
311+
float: left;
312+
margin-right: 5px;
313+
margin-top: 5px;
314+
/*triangle*/
315+
width: 0;
316+
height: 0;
317+
border-left: 8px solid transparent;
318+
border-right: 8px solid transparent;
319+
}
320+
321+
.inactive .sort-icon {
322+
/*finish triangle*/
323+
border-top: 8px solid #E6E6E6;
324+
}
325+
326+
.asc.active .sort-icon {
327+
/*finish triangle*/
328+
border-bottom: 8px solid #999;
329+
}
330+
331+
.desc.active .sort-icon {
332+
/*finish triangle*/
333+
border-top: 8px solid #999;
334+
}

0 commit comments

Comments
 (0)