Update build system and content
This commit is contained in:
parent
aa21b867b3
commit
6f1abd3fe5
44 changed files with 1406 additions and 92 deletions
|
@ -4,6 +4,9 @@ html {
|
|||
body {
|
||||
background-color: #282828;
|
||||
color: #fbf1c7;
|
||||
margin: 0;
|
||||
}
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: row-reverse;
|
||||
flex-wrap: wrap-reverse;
|
||||
|
@ -13,14 +16,14 @@ body {
|
|||
padding-top: 4em;
|
||||
}
|
||||
@media (min-width: 50em) {
|
||||
body {
|
||||
.container {
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
}
|
||||
aside {
|
||||
margin: 1em;
|
||||
margin-bottom: 3em;
|
||||
min-width: 12em;
|
||||
width: 12em;
|
||||
}
|
||||
main {
|
||||
margin: 1em;
|
||||
|
@ -41,19 +44,29 @@ article {
|
|||
padding: 1em;
|
||||
border-radius: 1em;
|
||||
}
|
||||
footer {
|
||||
display: block;
|
||||
background-color: #665c54;
|
||||
padding: 0.5em;
|
||||
}
|
||||
footer a.coffee {
|
||||
display: block;
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
.blog-name {
|
||||
font-size: 2em;
|
||||
font-size: 2rem;
|
||||
font-weight: 400;
|
||||
margin-bottom: 0.8em;
|
||||
display: block;
|
||||
color: #fbf1c7;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
}
|
||||
.blog-name a,
|
||||
.blog-name a:visited,
|
||||
.blog-name a:hover,
|
||||
.blog-name a:active {
|
||||
.blog-name:visited,
|
||||
.blog-name:hover,
|
||||
.blog-name:active {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
@ -80,12 +93,6 @@ a:active,
|
|||
a:hover {
|
||||
color: #689d6a;
|
||||
}
|
||||
*:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
*:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
p code {
|
||||
display: inline-block;
|
||||
background-color: #504945;
|
||||
|
|
|
@ -72,6 +72,10 @@ html{
|
|||
body{
|
||||
background-color: @gb-dm-bg0;
|
||||
color: @gb-dm-fg0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.container{
|
||||
display: flex;
|
||||
flex-direction: row-reverse;
|
||||
flex-wrap: wrap-reverse;
|
||||
|
@ -87,7 +91,7 @@ body{
|
|||
aside{
|
||||
margin: 1em;
|
||||
margin-bottom: 3em;
|
||||
min-width: 12em;
|
||||
width: 12em;
|
||||
}
|
||||
main{
|
||||
margin: 1em;
|
||||
|
@ -109,16 +113,28 @@ article{
|
|||
border-radius: 1em;
|
||||
}
|
||||
|
||||
footer{
|
||||
display: block;
|
||||
background-color: @gb-dm-bg3;
|
||||
padding: 0.5em;
|
||||
a{
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
img{
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.blog-name{
|
||||
font-size: 2em;
|
||||
font-size: 2rem;
|
||||
font-weight: 400;
|
||||
margin-bottom: 0.8em;
|
||||
display: block;
|
||||
a, a:visited, a:hover, a:active{
|
||||
color: @gb-dm-fg0;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
&:visited, &:hover, &:active{
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
@ -152,13 +168,13 @@ a:active, a:hover{
|
|||
}
|
||||
|
||||
|
||||
*:first-child{
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
*:last-child{
|
||||
margin-bottom: 0;
|
||||
}
|
||||
//*:first-child{
|
||||
// margin-top: 0;
|
||||
//}
|
||||
//
|
||||
//*:last-child{
|
||||
// margin-bottom: 0;
|
||||
//}
|
||||
|
||||
p code{
|
||||
display: inline-block;
|
||||
|
@ -167,6 +183,7 @@ p code{
|
|||
}
|
||||
|
||||
|
||||
|
||||
//Pandoc styles
|
||||
code{white-space: pre-wrap;}
|
||||
span.smallcaps{font-variant: small-caps;}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue