Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gh-build
3 changes: 2 additions & 1 deletion source/_themes/uwtheme/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<ul id="menu-main" class="sf-menu">
{%- block rootrellink %}
<li class="menu-item"><a href="{{ pathto(master_doc) }}">{{ shorttitle|e }}</a></li>
<li class="menu-item"><a href="DAGMC">DAGMC</a></li>
{%- endblock %}
{%- for rellink in rellinks|reverse %}
<li class="menu-item" {% if loop.first %}style="margin-right: 10px"{% endif %}>
Expand All @@ -33,7 +34,7 @@
{%- macro uwsidebar() %}
<div id="sidebar">
<div id="sidebar_section"></div>
<div id="sidebar_section">{{ toctree() }} </div>
<div id="sidebar_section">{{ toc }} </div>
</div>
{%- endmacro %}

Expand Down
47 changes: 37 additions & 10 deletions source/_themes/uwtheme/static/default.css_t
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ p { margin-top: 0.75em; }

.highlight-python { padding: 4px; border: 2px solid #000000; margin-left: 2em; }
.highlight { background: #ffffff; }
pre { font-family: courier; font-size: 80%;}
.pre { font-family: courier; font-size: 90%;}

body { line-height: 1; }
/* ol, ul { list-style: none; }*/
Expand Down Expand Up @@ -90,14 +88,17 @@ strong { font-weight: bold; }
em { font-style: italic; }
li h3, li p, li a { font-size: 1em; }

.headerlink { color: #ffffff; }
.headerlink:hover { color: #b70101; }

html {
color: #000;
background: #FFFFFF url(../_static/images/background.jpg) repeat-x top;
}

body {
margin: 40px auto 0;
width: 960px;
width: 1260px;
color: #8E8979;
background-color: transparent;
font: normal 100%/1.5 Verdana, sans-serif;
Expand Down Expand Up @@ -147,10 +148,10 @@ body {
font-family:georgia,Times New Roman,serif;
font-size: 2em;
position: absolute;
top: 26px;
top: 16px;
left: 87px;
width: 343px;
height: 34px;
width: 500px;
height: 72px;
overflow: hidden;
}
.home #siteTitle {
Expand Down Expand Up @@ -317,7 +318,7 @@ body {
/*layout*/

#c_container {
width: 958px;
width: 1258px;
border-right: 1px solid #666666;
border-left: 1px solid #666666;
border-bottom: 2px solid #666666;
Expand Down Expand Up @@ -685,7 +686,7 @@ body {
}
.page #content {
margin: 0 7px 0 0;
width: 640px;
width: 940px;
padding-top: 40px;
}
.page #sidebar {
Expand All @@ -699,11 +700,23 @@ body {
width: 250px;
}

.align-right {
float: right;
padding-left: 10px;
}

#sidebar_section {
margin: 0 0 0 10px;
position: fixed;
width: 245px;
}

#sidebar ul, #sidebar ol { list-style: none; }
#sidebar ul, ol { list-style: none; }

#sidebar ul ul { margin: 0 0 0 1em; list-style-type: circle; }
#sidebar ul ul ul { margin: 0 0 0 1em; list-style-type: square; }

ol { list-style-type: lower-alpha; margin: 0 0 0 3em;}

.page #sidebar .related_posts {
margin: 16px 16px 32px;
Expand All @@ -726,7 +739,20 @@ body {

h1, h2, h3 {margin-top: 0em; color:rgba(50, 04, 3e, 1); font-family:"Myriad Pro",Trebuchet,Arial,sans-serif;}

h2 {font-style: italic; text-decoration: underline; margin-top: 1em;}

h4 {font-weight: bold; margin-top: 1em;}

pre {font-family:Courier; background: #ffefef; border: 1px solid #ffaaaa; margin: 1em;}
.pre {font-family:Courier; background: #ffefef; border: 1px solid #ffaaaa;}

dl.docutils dt {
text-decoration: underline;
margin: 1em 0 0 0;
}
dl.docutils dd {
margin: 0 0 0 1em;
}
/*Innovations single*/

.single .post .label {
Expand All @@ -750,9 +776,10 @@ table {
margin-top: 16px;
margin-bottom: 2em;
text-align: left;
border: 1px solid #666;
border: 0px solid #666;
border-collapse: collapse;
font-size: .9em;
width: 100%;
}
caption {
text-align: left;
Expand Down
8 changes: 4 additions & 4 deletions source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ the same way, fusion shielding is necessary to protect the system's
components from the radiation produced by the fusion system they are
supporting.

This project includes a variety of tools, methodologies and workflows
that are relevant for the nuclear analysis of complex system,
including fusion power plant designs, accelerator irradiation
facilities and critical reactor systems.
This project includes a variety of `tools, methodologies and workflows
<map.html>`_ that are relevant for the nuclear analysis of complex system,
including fusion power plant designs, accelerator irradiation facilities and
critical reactor systems.

Single Physics Analysis Tools
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Expand Down
Loading