Forgot to push for ages

This commit is contained in:
Jonathan Hodgson 2021-04-14 16:15:46 +01:00
parent e17a042f52
commit 9d8c010bad
25 changed files with 2069 additions and 18 deletions

View file

@ -79,6 +79,10 @@ body{
scrollbar-width: thin;
}
body .commento-root *{
color: @gb-dm-fg0;
}
.container{
display: flex;
flex-direction: row-reverse;
@ -150,6 +154,30 @@ img{
max-width: 100%;
}
blockquote{
border-left: 0.5em solid @gb-dm-fg3;
margin-left: 0;
padding-left: 1em;
}
table{
border-collapse: collapse;
}
tr:hover{
background-color: @gb-dm-bg2;
}
td,th{
padding: 0.5em;
border: 1px solid @gb-dm-fg3;
}
th{
background-color: @gb-lm-bg0-soft;
color: @gb-lm-fg0;
}
.blog-name{
font-size: 2rem;
font-weight: 400;
@ -181,8 +209,6 @@ ul.tags{
}
}
a, a:visited{
color: @gb-dm-light-aqua;
}
@ -212,7 +238,18 @@ p code, li code{
}
}
.tip{
background-color: @gb-lm-light-green;
border: 3px solid @gb-lm-dark-green;
padding: 1em;
&::before{
content: "Tip:";
text-transform: uppercase;
text-align: center;
font-weight: bold;
display: block;
}
}
//Pandoc styles
code{white-space: pre-wrap;}
@ -304,4 +341,3 @@ code span.st { color: @gb-dm-dark-yellow; } /* String */
code span.va { color: @gb-dm-dark-red; } /* Variable */
code span.vs { color: #4070a0; } /* VerbatimString */
code span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */