File size: 3,158 Bytes
fa0f006 |
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 |
.collapsible_headings_toggle .h1 {
font-size: 185.7%;
margin: 0.538em 0 0 0;
line-height: 1.0;
}
.collapsible_headings_toggle .h2 {
font-size: 157.1%;
margin: 0.636em 0 0 0;
line-height: 1.0;
}
.collapsible_headings_toggle .h3 {
font-size: 128.6%;
margin: 0.777em 0 0 0;
line-height: 1.0;
}
.collapsible_headings_toggle .h4,
.collapsible_headings_toggle .h5,
.collapsible_headings_toggle .h6 {
font-size: 100%;
margin: 1em 0 0 0;
line-height: 1.0;
}
.collapsible_headings_toggle.btn .h1,
.collapsible_headings_toggle.btn .h2,
.collapsible_headings_toggle.btn .h3,
.collapsible_headings_toggle.btn .h4,
.collapsible_headings_toggle.btn .h5,
.collapsible_headings_toggle.btn .h6 {
margin-top: 0;
}
.collapsible_headings_toggle .fa {
transition: transform 400ms;
/* don't support IE filter, since can't rotate 360 */
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
.collapsible_headings_collapsed .fa {
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
}
/* bracket rules */
div.cell {
position: relative;
}
.chb {
position: absolute;
top: -1px;
bottom: -1px;
left: calc(100% + 3px);
display: flex;
flex-direction: row-reverse;
justify-content: flex-start;
align-items: stretch;
}
.chb div {
margin-left: 2px;
width: 5px;
border-color: #aaa;
border-left-color: transparent;
border-style: solid;
border-width: 0 2px 0 2px;
}
.collapsible_headings_collapsed .chb .chb-start {
border-width: 5px 2px 2px 4px;
}
.chb div:hover,
.chb .chb-hover,
.jupyter-soft-selected .chb div{
border-color: #42A5F5;
border-left-color: transparent;
border-width: 0 3px 0 0;
}
.chb .chb-start {
border-top-width: 1px;
margin-top: 2px;
}
.chb .chb-end {
border-bottom-width: 1px;
margin-bottom: 2px;
}
.chb-start div:hover, .chb .chb-start.chb-hover, .jupyter-soft-selected .chb .chb-start {
border-top-width: 2px;
}
.chb-end div:hover, .chb .chb-end.chb-hover, .jupyter-soft-selected .chb .chb-end {
border-bottom-width: 2px;
}
/* ellipsis rules */
.collapsible_headings_ellipsis .rendered_html h1,
.collapsible_headings_ellipsis .rendered_html h2,
.collapsible_headings_ellipsis .rendered_html h3,
.collapsible_headings_ellipsis .rendered_html h4,
.collapsible_headings_ellipsis .rendered_html h5,
.collapsible_headings_ellipsis .rendered_html h6 {
position: relative;
padding-right: 2em;
}
.collapsible_headings_collapsed.collapsible_headings_ellipsis .rendered_html h1:after,
.collapsible_headings_collapsed.collapsible_headings_ellipsis .rendered_html h2:after,
.collapsible_headings_collapsed.collapsible_headings_ellipsis .rendered_html h3:after,
.collapsible_headings_collapsed.collapsible_headings_ellipsis .rendered_html h4:after,
.collapsible_headings_collapsed.collapsible_headings_ellipsis .rendered_html h5:after,
.collapsible_headings_collapsed.collapsible_headings_ellipsis .rendered_html h6:after {
position: absolute;
right: 0;
bottom: 0;
content: "[\002026]";
color: #aaa;
} |