Draft Forbes Group Website (Build by Nikola). The official site is hosted at:
License: GPL3
ubuntu2004
/* My customizations.12List of posts3=============45This contains things like Research Highlights.67Markup should be:89<section>10<header><h2>Research Highlights</h2></header>11<article class="posts">12<div>13<!-- May have additional structure from notebooks etc. -->14<div class="image"><img></div>15<h3 id="Negative-Mass-Hydrodynamics">...</h3>16<p>Negative mass is...</p>1718...1920<p class="button"><a href="...">Read more...</a></p>21</div>22</article>23</section>2425Post26====2728This contains things like Research Highlights.2930Markup should be:3132<header class="main-header">33</header>34<section>35<div class="post">36<!-- May have additional structure from notebooks etc. -->37<div id="notebook">38...39<img>40</div>41</div>42</section>4344Page45====4647This contains things like Research Highlights.4849Markup should be:5051<header class="main-header">52</header>53<section>54<div class="page">55<!-- May have additional structure from notebooks etc. -->56<div id="notebook">57...58<img>59</div>60</div>61</section>6263*/64/* Stretching the definition of campus. New term? */65/* Overrides for IPython formatting.66*/67div.prompt {68padding: 0;69font-size: 13px;70background: initial;71min-width: initial;72margin-right: 0;73-webkit-border-radius: 3px;74-moz-border-radius: 3px;75border-radius: 3px; }7677.rendered_html ul {78margin: 0;79padding: 0 0em 0em 2em; }8081.rendered_html ul ul {82margin: 0;83padding: 0 0em 0em 2em; }8485.rendered_html ul ul ul {86margin: 0;87padding: 0 0em 0em 2em; }8889.rendered_html ul li {90margin: 0;91padding: 0; }9293.rendered_html ul ul li {94margin: 0;95padding: 0; }9697.rendered_html ul ul ul li {98margin: 0;99padding: 0; }100101.rendered_html #Table-of-Contents ~ ul {102margin: 0;103padding: 0 2em 0em 2em; }104105.rendered_html #Table-of-Contents ~ ul li {106list-style: none;107padding: 0; }108109/* Local Variables: */110/* mode: scss */111/* css-indent-offset: 2 */112/* End: */113header.major > :last-child {114border-bottom: solid 3px #c60c30;115display: inline-block;116margin: 0.5em 0 2em 0;117padding: 0 0.75em 0.5em 0; }118119.main-header {120height: auto;121min-height: 142px; }122123/* Improvements for code snippets so they do not overflow. */124div .inner_cell {125width: 100%;126max-width: 100%;127/* New: to fix long text. */ }128129pre {130overflow: auto;131white-space: pre-wrap; }132133/* Improvements for MathJaX so it does not overflow. */134div .MathJax_Display {135overflow: auto; }136137/* Image at top of posts should never be too large */138img {139display: inline-block;140max-width: 100%; }141142/* Margin notes143https://github.com/washingtonstateuniversity/144WSUWP-Plugin-HTML-Component-Embed/issues/2145*/146div:has(.marginnote) .post {147padding-right: 20%; }148div:has(.marginnote) .post .marginnote {149position: absolute;150width: 16%;151right: 0;152font-size: .75rem;153border-left: 1px solid rgba(0, 0, 0, 0.2);154padding-left: 1%;155color: blue; }156157div .posts {158/* Do something different here...*/ }159160/* Reduce font size for quarter divisions */161.quarters h1 {162font-size: 1.8em;163font-size: 1.8rem; }164165.quarters h2 {166font-size: 1.6em;167font-size: 1.6rem; }168169.quarters h3 {170font-size: 1.4em;171font-size: 1.4rem; }172173.quarters h4 {174font-size: 1.2em;175font-size: 1.2rem; }176177.quarters h5 {178font-size: 1.0em;179font-size: 1.0rem; }180181.quarters h6 {182font-size: 0.8em;183font-size: 0.8rem; }184185/* Post lists */186.posts div#notebook img:nth-of-type(1) {187max-width: 100%;188max-height: 300px; }189190/* Posts */191.post div#notebook img:nth-of-type(1) {192max-width: 50%;193max-height: 300px; }194.post div#notebook div.prompt {195padding: 0;196/* No borders in post list. */197margin-right: 0; }198199/* Pages */200201202