mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 08:38:32 +02:00
* Initial migration of contributing.md to docs site * Update contributing to include pytest-bdd changes * add top level section support, and h2 support in sidebar * Incorporate latest changes to contributing.md, clean up language and formatting, and check/add links as necessary * Add a link to milestones * Update CONTRIBUTING.md Co-authored-by: Jonathan Wren <jonathan@nowandwren.com>
378 lines
7.1 KiB
CSS
378 lines
7.1 KiB
CSS
/* Copyright (C) 2012-2021 jrnl contributors
|
|
License: https://www.gnu.org/licenses/gpl-3.0.html */
|
|
|
|
/* ------------------------------------------------------------ */
|
|
/* Overrides for jrnl theme */
|
|
/* ------------------------------------------------------------ */
|
|
|
|
body.wy-body-for-nav,
|
|
section.wy-nav-content-wrap {
|
|
background-color: var(--white);
|
|
color: var(--black);
|
|
}
|
|
|
|
.rst-content pre {
|
|
background-color: transparent;
|
|
border: none;
|
|
margin: 1em -1em;
|
|
}
|
|
|
|
.rst-content code {
|
|
color: var(--darkest-purple);
|
|
background-color: var(--off-white);
|
|
font-size: 15px;
|
|
}
|
|
|
|
.rst-content pre code {
|
|
color: var(--off-white);
|
|
background: var(--darkest-purple);
|
|
padding: 1em 1.5em;
|
|
border-radius: 15px;
|
|
border: none;
|
|
font-size: 16px;
|
|
line-height: 1.5em;
|
|
font-weight: 200 !important;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-family: "Open Sans", "Helvetica Neue", Helvetica, sans-serif;
|
|
font-weight: 600;
|
|
margin-top: 2rem;
|
|
margin-bottom: 0.2rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.2em;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 1em;
|
|
}
|
|
|
|
p,
|
|
td,
|
|
tr,
|
|
div,
|
|
li {
|
|
font-family: "Open Sans", "Helvetica Neue", Helvetica, sans-serif;
|
|
font-weight: 00;
|
|
font-size: 18px;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
p {
|
|
margin: 1em 0em;
|
|
}
|
|
|
|
/* No-one likes lines that are 400 characters long. */
|
|
div.rst-content {
|
|
max-width: 54em;
|
|
}
|
|
|
|
.wy-side-nav-search,
|
|
.wy-menu-vertical li.current,
|
|
.wy-menu-vertical li.toctree-l1.current > a {
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
.wy-nav-top {
|
|
background-color: var(--mid-purple);
|
|
background-image: linear-gradient(-211deg, var(--mid-purple) 0%, var(--dark-purple) 100%);
|
|
}
|
|
|
|
.wy-nav-top .fa-bars {
|
|
line-height: 50px;
|
|
}
|
|
|
|
.wy-side-nav-search a.icon-home {
|
|
width: 100%;
|
|
max-width: 250px;
|
|
background-size: 100%;
|
|
}
|
|
|
|
a.icon-home:before {
|
|
display: block;
|
|
width: 84px;
|
|
height: 70px;
|
|
content: "";
|
|
background: url(../img/logo_white.svg) center center no-repeat;
|
|
margin: 10px auto;
|
|
}
|
|
|
|
.wy-menu-vertical a,
|
|
.wy-menu-vertical li ul li a {
|
|
font-size: 16px;
|
|
color: var(--white);
|
|
line-height: 2em;
|
|
}
|
|
|
|
.wy-menu-vertical a:hover,
|
|
.wy-menu-vertical li.current a:hover {
|
|
background-color: var(--black-shadow);
|
|
color: var(--white);
|
|
}
|
|
|
|
.wy-menu-vertical li.on a {
|
|
transition: all .25s ease;
|
|
background: var(--dark-purple);
|
|
color: var(--white);
|
|
position: relative;
|
|
}
|
|
|
|
.wy-menu-vertical li.current > a.current {
|
|
background: var(--darkest-purple);
|
|
border: none !important;
|
|
}
|
|
|
|
.wy-menu-vertical li.current > a:hover {
|
|
background: var(--darkest-purple);
|
|
border: none;
|
|
}
|
|
|
|
.wy-menu-vertical li.on a,
|
|
.wy-menu-vertical li.current a {
|
|
border-right: none;
|
|
}
|
|
|
|
.wy-menu-vertical li.on a,
|
|
.wy-menu-vertical li.current>a:after {
|
|
position: absolute;
|
|
right: 0em;
|
|
z-index: 999;
|
|
content: "";
|
|
width: 0;
|
|
height: 0;
|
|
border-top: 1em solid transparent;
|
|
border-bottom: 1em solid transparent;
|
|
border-right: 1em solid var(--white);
|
|
}
|
|
|
|
.wy-menu-vertical li.toctree-l2.current {
|
|
font-size: 50px;
|
|
}
|
|
|
|
.wy-menu-vertical li.toctree-l2.current > a{
|
|
}
|
|
|
|
.toctree-expand:before {
|
|
display: none !important;
|
|
}
|
|
|
|
.rst-versions,
|
|
.rst-versions .rst-current-version {
|
|
display: none;
|
|
}
|
|
|
|
.wy-menu-vertical p.caption {
|
|
margin-top: 2em;
|
|
}
|
|
|
|
.wy-menu-vertical span {
|
|
color: var(--white);
|
|
font-size: 1.2em;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.wy-menu-vertical li a {
|
|
color: var(--white) !important;
|
|
font-weight: 300;
|
|
}
|
|
|
|
|
|
.wy-nav-side {
|
|
background-color: var(--mid-purple);
|
|
background-image: linear-gradient(211deg, var(--mid-purple) 0%, var(--dark-purple) 100%);
|
|
font-weight: 300;
|
|
height: 100%;
|
|
}
|
|
|
|
|
|
footer {
|
|
display: none;
|
|
}
|
|
|
|
.wy-side-nav-search input[type=text],
|
|
.mkdocs-search input[type=text],
|
|
form .search-query {
|
|
background-color: var(--off-white);
|
|
border: none;
|
|
margin-bottom: 1em;
|
|
color: var(--black);
|
|
font-weight: 500;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.wy-side-nav-search input[type=text]::placeholder,
|
|
.mkdocs-search input[type=text]::placeholder,
|
|
form .search-query::placeholder {
|
|
color: var(--dark-purple);
|
|
}
|
|
|
|
.wy-side-nav-search > a:hover {
|
|
background: transparent;
|
|
}
|
|
|
|
.toctree-l2 a:first-child {
|
|
display: block;
|
|
}
|
|
|
|
.wy-menu-vertical li.current ul {
|
|
background-color: var(--mid-purple);
|
|
border-bottom: 1px solid var(--mid-purple);
|
|
border-top: 1px solid var(--dark-purple);
|
|
}
|
|
|
|
|
|
/* ------------------------------------------------------------ */
|
|
/* Logo: ; */
|
|
/* ------------------------------------------------------------ */
|
|
|
|
.logo {
|
|
width: 128px;
|
|
height: 128px;
|
|
vertical-align: middle;
|
|
margin-right: 1em;
|
|
}
|
|
|
|
/* ------------------------------------------------------------ */
|
|
/* Code blocks in callouts */
|
|
/* ------------------------------------------------------------ */
|
|
|
|
div.admonition {
|
|
border-radius: 5px;
|
|
margin: 1em -1em;
|
|
}
|
|
|
|
div.admonition p.admonition-title {
|
|
border-top-left-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
}
|
|
|
|
div.admonition>p {
|
|
padding: 0em .5em;
|
|
}
|
|
|
|
|
|
div.admonition div.highlight {
|
|
background: none !important;
|
|
}
|
|
|
|
/* ------------------------------------------------------------ */
|
|
/* Fancy ordered lists. */
|
|
/* ------------------------------------------------------------ */
|
|
|
|
ol {
|
|
counter-reset: li;
|
|
margin-left: 0px;
|
|
padding: 0;
|
|
}
|
|
|
|
ol li {
|
|
list-style: none !important;
|
|
margin-bottom: 1.5em;
|
|
margin-left: 3em !important;
|
|
}
|
|
|
|
ol>li:before {
|
|
content: counter(li);
|
|
counter-increment: li;
|
|
background-color: var(--sidebar);
|
|
border-radius: 50%;
|
|
display: block;
|
|
float: left;
|
|
margin-left: -3em;
|
|
margin-top: -.3em;
|
|
width: 2em;
|
|
height: 2em;
|
|
color: var(--dark-purple);
|
|
text-align: center;
|
|
line-height: 2em;
|
|
font-weight: 600;
|
|
}
|
|
|
|
|
|
/* ------------------------------------------------------------ */
|
|
/* Accessibility-related changes */
|
|
/* ------------------------------------------------------------ */
|
|
.rst-content div[role="main"] a,
|
|
.rst-content div[role="main"] a:visited {
|
|
color: var(--mid-purple);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.rst-content div[role="main"] a:hover {
|
|
color: var(--bright-purple);
|
|
}
|
|
|
|
.rst-content div[role="navigation"] a,
|
|
.rst-content div[role="navigation"] a:visited {
|
|
color: var(--mid-purple);
|
|
}
|
|
|
|
.mkdocs-search {
|
|
display: flex;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.wy-side-nav-search input[type="text"],
|
|
.mkdocs-search input[type=text] {
|
|
border-radius: 50px 0 0 50px;
|
|
height: 32px;
|
|
border-right: none;
|
|
margin: 0;
|
|
}
|
|
|
|
.mkdocs-search button {
|
|
background-color: var(--off-white);
|
|
border: none;
|
|
box-shadow: none;
|
|
color: var(--mid-purple);
|
|
border-radius: 0 50px 50px 0;
|
|
height: 32px;
|
|
width: 2.5em;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mkdocs-search {
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.mkdocs-search:focus-within {
|
|
box-shadow: 0 2px 25px 0 var(--blacker-shadow);
|
|
transition: all .5s ease;
|
|
}
|
|
|
|
.rst-content div[role="main"] .mkdocs-search input[type="text"] {
|
|
border-right: none;
|
|
font-size: 100%;
|
|
height: 48px;
|
|
margin: 0;
|
|
}
|
|
|
|
.rst-content div[role="main"] .mkdocs-search button {
|
|
border-left: none;
|
|
font-size: 100%;
|
|
height: 48px;
|
|
}
|
|
|
|
.rst-content div[role="main"] .mkdocs-search button:before {
|
|
font-size: 140%;
|
|
position: relative;
|
|
left: -7px;
|
|
top: -1px;
|
|
}
|
|
|
|
.search-results {
|
|
margin-top: 0;
|
|
}
|