Files
blog_os/blog/static/css/main.css
2018-03-04 23:18:01 +01:00

251 lines
3.4 KiB
CSS

.masthead-title {
font-size: 1.25rem;
display: inline;
}
.masthead p {
font-size: 1.25rem;
display: inline;
margin: 0;
margin-left: 1rem;
padding: 0;
line-height: 1;
}
.front-page-introduction {
margin-bottom: 2rem;
}
.navigation {
float: right;
}
.navigation img {
height: 1em;
vertical-align: baseline;
display: inline-block;
margin: 0;
padding: 0;
border-radius: 0;
}
main img {
max-width: 100%;
margin: auto;
}
.post {
margin-bottom: 2em;
}
.post:last-child {
margin-bottom: 0em;
}
.posts {
padding: 1.5rem 1rem 0.5rem 1rem;
border-radius: 10px;
margin-bottom: 2rem;
margin-left: -0.5rem;
margin-right: -0.5rem;
}
.posts.neutral {
border: 2px solid #999;
}
.posts.bare-bones {
border: 2px solid #66f;
}
.posts.memory-management {
border: 2px solid #cc0;
}
.posts.exceptions {
border: 2px solid #f66;
}
.posts hr {
margin: 2rem 0;
}
.post-summary {
margin-bottom: 1rem;
}
.post-summary p {
display: inline;
}
.read-more {
margin-left: 5px;
}
.post-category {
margin-right: 0.5rem;
text-transform: uppercase;
font-size: 0.8rem;
text-align: right;
}
.post-category.bare-bones {
color: #55d;
}
.post-category.memory-management {
color: #990;
}
.post-category.exceptions {
color: #f33;
}
.PageNavigation {
font-size: 0.9em;
display: table;
width: 100%;
overflow: hidden;
}
.PageNavigation a {
display: table-cell;
}
.PageNavigation .previous {
text-align: left;
}
.PageNavigation .next {
text-align: right;
}
footer.footer {
margin-top: 1rem;
margin-bottom: 1rem;
}
.footnotes {
font-size: 85%;
}
.footnotes li {
margin-bottom: 1rem;
}
sup, sub {
line-height: 0;
}
a.anchorjs-link:hover {
text-decoration: none;
}
aside#toc {
display: none;
}
@media (min-width: 80rem) {
aside#toc {
display: block;
width: 12rem;
position: fixed;
top: 4rem;
margin-left: -15rem;
font-size: 90%;
line-height: 1.2;
opacity: .5;
transition: opacity .5s;
}
aside#toc:hover {
opacity: 1;
}
aside#toc h2 {
font-size: 110%;
margin-bottom: .2rem;
}
aside#toc ol {
margin: 0 0 .2rem 0;
padding: 0 0 0 1rem;
list-style:none;
}
aside#toc ol li:before {
content: "";
border-color: transparent #008eef;
border-style: solid;
border-width: 0.35em 0 0.35em 0.45em;
display: block;
height: 0;
width: 0;
left: -1em;
top: 0.9em;
position: relative;
}
aside#toc.coarse li ol {
display: none;
}
aside#recent-updates {
position: absolute;
max-width: 17rem;
top: 4rem;
margin-left: 45rem;
margin-right: 2rem;
font-size: 90%;
}
aside#recent-updates h2 {
font-size: 110%;
margin-bottom: .2rem;
}
aside#recent-updates ul {
margin: 0 0 .2rem 0;
padding: 0 0 0 1rem;
}
aside#recent-updates ul li {
margin-top: .5rem;
}
}
aside#recent-updates time {
color: #9a9a9a;
}
a code {
color: #268bd2;
}
a.gutenberg-anchor {
opacity: 0;
position: absolute;
margin-left: -1.5em;
padding-right: 1em;
font-size: 0.6em;
vertical-align: baseline;
line-height: 2em;
}
:hover>a.gutenberg-anchor {
opacity: 1;
text-decoration: none;
}
a.gutenberg-anchor:hover {
text-decoration: none;
}
div.warning {
padding: .7rem 1rem;
margin: 1rem .2rem;
border: 2px solid orange;
border-radius: 5px;
background-color: #ffa50022;
}