Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft #11

Merged
merged 2 commits into from
Aug 13, 2020
Merged
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
site/
.DS_Store

119 changes: 59 additions & 60 deletions docs/architecture_data_model.md

Large diffs are not rendered by default.

112 changes: 95 additions & 17 deletions docs/css/deqar.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
/* CSS custom for DEQAR MkDocs */

.wy-side-nav-search {
background-color: #98ACCA;
background-color: #033163;
}

.wy-menu li.current ul.subnav ul {
padding-left: 1em;
}
Expand All @@ -16,51 +15,95 @@
padding-left: 2.427em;
}

/* number TOC menu */

.wy-menu .toctree-l1 {
counter-reset: first-toc;
}
.wy-menu .toctree-l2 {
counter-reset: second-toc;
}
.wy-menu .toctree-l2 > a::before {
content: counter(first-toc) ". ";
counter-increment: first-toc;;
}
.wy-menu .toctree-l3 > a::before {
content: counter(first-toc) "." counter(second-toc) " ";
counter-increment: second-toc;
}

/* breadcrumbs & footer */

.wy-breadcrumbs,
.rst-content footer {
color: #18498F;
}
.wy-breadcrumbs a,
.wy-breadcrumbs a:visited,
.rst-content footer a,
.rst-content footer a:visited {
color: #18498F;
text-decoration: none;
}

/* adjust colours to EQAR theme */

.rst-content code, .rst-content tt {
font-size: 90%;
padding: 2px 0px;
color: #18498F;
color: #033163;
border: none;
}

/* quotes from documents */

.rst-content blockquote {
background-color: #C6D2E3;
background-color: #E6F6FF;
color: #033163;
margin: 10px 0 20px 0;
border-left: 6px solid #98ACCA;
border-left: 6px solid #18498F;
padding: 15px;
border-radius: 5px;
}
.rst-content blockquote p:last-child {
margin-bottom: 0;
}

pre {
border: none;
font-family: inherit;
background-color: #98ACCA;
padding: .5em;
margin: 1em 0;
.rst-content pre {
background-color: #E6F6FF;
color: #033163;
margin: 10px 0 20px 0;
border-left: 6px solid #18498F;
padding: 15px;
border-radius: 5px;
}

.rst-content pre code {
background: transparent;
}

.rst-content .section a, .rst-content .section a:visited {
color: #18498F;
color: #033163;
text-decoration: underline #03316388;
}
.rst-content .section a[href$=".pdf"], .rst-content .section a[href$=".pdf"]:visited {
color: #FF8A00;
padding: 9px 12px 9px 40px;
display: block;
background: #FFF3D9 url(../img/pdf.svg) no-repeat 13px center;
text-decoration: none;
}
.rst-content .section a.link-button, .rst-content .section a.link-button:visited {
color: #FF8A00;
padding: 9px 12px 9px 40px;
display: block;
background: #FFF3D9 url(../img/link.svg) no-repeat 10px center;
text-decoration: none;
}
.rst-content .section a:hover {
text-decoration: underline;
text-decoration: underline #033163;
}

.rst-content .section ul li p:last-child {
margin-bottom: 12px;
.rst-content .section a[href$=".pdf"]:hover {
text-decoration: underline #FF8A00;
}

/* we want you for DEQAR */
Expand All @@ -69,10 +112,38 @@ pre {
margin: 0 0 10px 10px;
}

.rst-content .section ol p, .rst-content .section ul p {
margin-bottom: 0;
margin-top: 12px;
}

.rst-content h1, .rst-content h2, .rst-content h3, .rst-content h4, .rst-content h5 {
clear: both;
}

.rst-content h1, .rst-content h2 {
color: #033163;
}

.rst-content h1 {
counter-reset: first-body;
}
.rst-content h2 {
counter-reset: second-body;
}
.rst-content h2:before {
content: counter(first-body) ". ";
counter-increment: first-body;
}
.rst-content h3:before {
content: counter(first-body) "." counter(second-body) " ";
counter-increment: second-body;
}

.rst-content hr {
border-top: 1px solid #18498F;
}

.rst-content table {
margin-left: 24px;
margin-bottom: 24px;
Expand Down Expand Up @@ -106,6 +177,13 @@ pre {
content: "(" counter(orderedlist, lower-roman) ")";
}

.rst-content .footnote {
color: #666;
font-size: 13px;
}
.rst-content .footnote p {
font-size: inherit;
}

/* CSS for print output */

Expand Down
59 changes: 0 additions & 59 deletions docs/data_elements_summary.md

This file was deleted.

Loading