Initial cut
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
pre, .pre {
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
overflow: scroll;
|
||||
}
|
||||
|
||||
|
||||
pre code {
|
||||
display: block;
|
||||
padding: 1.5em 1.5em;
|
||||
white-space: pre;
|
||||
font-size: .875rem;
|
||||
line-height: 2;
|
||||
|
||||
}
|
||||
|
||||
pre {
|
||||
background-color: #222;
|
||||
color: #ddd;
|
||||
white-space: pre;
|
||||
|
||||
hyphens: none;
|
||||
position: relative;
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
/* pagination.html: https://github.com/spf13/hugo/blob/master/tpl/tplimpl/template_embedded.go#L117 */
|
||||
.pagination {
|
||||
margin: 3rem 0;
|
||||
}
|
||||
|
||||
.pagination li {
|
||||
display: inline-block;
|
||||
margin-right: .375rem;
|
||||
font-size: .875rem;
|
||||
margin-bottom: 2.5em;
|
||||
}
|
||||
|
||||
[dir="rtl"] .pagination li {
|
||||
margin-left: .375rem;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.pagination li a {
|
||||
padding: .5rem .625rem;
|
||||
background-color: white;
|
||||
color: #333;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 3px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.pagination li.disabled {
|
||||
display: none;
|
||||
}
|
||||
.pagination li.active a,
|
||||
.pagination li.active a:link,
|
||||
.pagination li.active a:active,
|
||||
.pagination li.active a:visited {
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
||||
#TableOfContents ul li {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
.ananke-socials a{
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
color: #BABABA;
|
||||
fill: currentColor;
|
||||
}
|
||||
.ananke-socials a .icon svg{
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
.ananke-socials a:hover {
|
||||
color: rgb(107, 114, 128);
|
||||
}
|
||||
.new-window {
|
||||
opacity: 0;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
}
|
||||
.link-transition:hover .new-window{
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
nav a[href^='http'] span.new-window {
|
||||
opacity: 1;
|
||||
fill: currentColor;
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
/* Put your custom styles here and run `npm start` from the "src" directory on */
|
||||
|
||||
#TableOfContents ul li {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.lh-copy blockquote {
|
||||
display: block;
|
||||
font-size: .875em;
|
||||
margin-left: 2rem;
|
||||
margin-top: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
border-left: 4px solid #ccc;
|
||||
padding-left: 1rem;
|
||||
|
||||
}
|
||||
|
||||
.nested-links a{
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Quentincaps;
|
||||
src: url('/quentincaps.woff2') format('woff2');
|
||||
}
|
||||
|
||||
|
||||
header .fancy-title {
|
||||
font-family: Quentincaps;
|
||||
color: firebrick;
|
||||
text-shadow: 0px 0px 10px yellow;
|
||||
}
|
||||
|
||||
nav .fancy-title{
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
article>div p:not(.nodrop):first-of-type::first-letter {
|
||||
color: firebrick;
|
||||
padding: 0 .3rem;
|
||||
margin: 0 .3rem 0 0;
|
||||
border: 2px solid;
|
||||
border-radius: 8px;
|
||||
font-family: Quentincaps, monospace;
|
||||
|
||||
font-size: 4rem;
|
||||
float: left;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
ol li li {
|
||||
list-style-type: lower-alpha;
|
||||
}
|
||||
ol li li li{
|
||||
list-style-type: lower-roman;
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user