mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 07:58:26 -04:00
- de-personalize the theme as much as possible, moving personal info into config.toml parameters - extract hard-coded content out layouts and into actual /content (especially home page and all of its assets) - include full text of posts in RSS feed (aka making the world a better place) - use abstract layout for both video pages (/leo and /birthday)
70 lines
890 B
SCSS
70 lines
890 B
SCSS
@charset "UTF-8";
|
|
|
|
// Responsive Blog
|
|
body#notes {
|
|
padding: 0 20px;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
|
|
header {
|
|
nav {
|
|
padding: 5px 0;
|
|
|
|
a#logo {
|
|
padding: 10px;
|
|
|
|
img,
|
|
svg {
|
|
height: 60px;
|
|
width: auto;
|
|
}
|
|
|
|
span#name {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
font-size: 1.75em;
|
|
margin-right: 10px;
|
|
|
|
li {
|
|
width: 55px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
footer div {
|
|
&#panda {
|
|
display: none;
|
|
}
|
|
|
|
&#copyright,
|
|
&#poweredby {
|
|
line-height: 1.8;
|
|
width: 50%;
|
|
}
|
|
|
|
&#poweredby {
|
|
a#hugo::after {
|
|
content: "\A";
|
|
white-space: pre;
|
|
}
|
|
}
|
|
}
|
|
|
|
main#archive section.year {
|
|
font-size: 1em;
|
|
}
|
|
|
|
main#single article {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
|
|
div#info h1 {
|
|
font-size: 1.7em;
|
|
}
|
|
}
|
|
}
|