Calcifer/output/theme/css/main.css

133 lines
1.2 KiB
CSS

html,body
{
margin: 0;
padding: 0;
min-height: 100vh;
font-family: arimo;
display: flex;
width: 100%;
}
a
{
color:black;
}
/*
a:visited
{
text-decoration-color: orange;
}
*/
header
{
width: 250px;
background-color: #F0F0F0;
padding: 2em;
font-family: 'JosefinSans';
}
main
{
flex:1;
background-color: white;
padding: 2em;
}
h1
{
text-align: center;
font-family: 'JosefinSans';
line-height: 1;
}
nav ul
{
list-style-type: none;
padding: 0;
}
nav li
{
margin-bottom: 0.5em;
font-size: 1.2em;
text-align: center;
}
article
{
max-width: 700px;
text-align: justify;
margin: auto;
font-size: 1rem;
line-height: 1.5;
}
article .meta
{
text-align: center;
}
article h1
{
color:black;
font-size: 4em;
margin: 0;
font-weight: 100;
}
h1 a
{
text-decoration: none !important;
color:black !important;
}
article p
{
}
article a
{
color:#2a7ae2;
}
article blockquote
{
font-style: italic;
color: #5e5e5e;
}
.posts
{
}
.summary
{
margin: 1em auto;
max-width: 600px
}
.summary .separator
{
margin: 2em auto;
max-width: 100px;
border-bottom: 2px solid black;
}
.summary h1
{
font-size: 3em;
}
pre
{
border-left: 2px solid black;
padding: 0.5em;
overflow-x: auto;
}