content + styling

This commit is contained in:
Lucy Cifferello
2020-10-08 20:56:54 -06:00
parent be80a9aeb2
commit 1985952f87
18 changed files with 166 additions and 65 deletions

View File

@@ -9,17 +9,17 @@ h1 {
}
h2 {
font-size: 1.75rem;
}
h3 {
font-size: 1.5rem;
}
h4 {
h3 {
font-size: 1.25rem;
}
h4 {
font-size: 1.15rem;
}
p, nav a {
font-size: 1.1em;
letter-spacing: 0.75px;
@@ -78,4 +78,55 @@ ul .current li .current {
#site-navigation {
background-color: #2b2b2b;
}
}
code {
color: #ff4961!important;
}
.topbar .topbar-main button.topbarbtn {
background-color: #2b2b2b;
color: #ff4960;
}
.admonition {
width: 80%;
}
/* TOGGLE */
.toggle .admonition {
padding-bottom: 0px!important;
}
.toggle .admonition-title {
display: block;
clear: both;
cursor: pointer;
}
.toggle .admonition-title::after {
content: " ▶";
}
.toggle .admonition-title.open::after {
content: " ▼";
}
.expand {
width: 60%;
margin: 1em 0 1em 5em;
padding: 0 .6rem 0rem!important;
border-left: .2rem solid #393838!important;
box-shadow: 0 0.2rem 0.5rem rgba(0,0,0,.05), 0 0 0.05rem rgba(0,0,0,.1);
transition: color .25s,background-color .25s,border-color .25s;
}
.expand .admonition-title {
background-color: #1e1e1e;
font-weight: 300;
}
.expand .admonition-title:before {
color: #393838!important;
}

View File

@@ -1,3 +1,11 @@
$(document).ready(function () {
$('a[href^="http://"], a[href^="https://"]').not('a[class*=internal]').attr('target', '_blank');
});
// open external links in separate tab
$('a[href^="http://"], a[href^="https://"]').not('a[class*=internal]').attr('target', '_blank');
// toggle hidable sections
$(".toggle > *").hide();
$(".toggle .admonition-title").show();
$(".toggle .admonition-title").click(function() {
$(this).parent().children().not(".admonition-title").toggle(400);
$(this).parent().children(".admonition-title").toggleClass("open");
})
});