varia.website/themes/varia/static/css/main.css

371 lines
6.0 KiB
CSS
Raw Normal View History

@font-face{
font-family: "header";
src:url('../fonts/cmunssdc.ttf');
2017-10-24 10:50:06 +02:00
font-weight: normal;
font-style: normal;
}
@font-face{
font-family: "main";
src:url('../fonts/CourierCode-Roman.ttf');
font-weight: normal;
font-style: normal;
}
@font-face{
font-family: "main";
src:url('../fonts/CourierCode-Bold.ttf');
font-weight: bold;
font-style: normal;
}
2017-10-24 10:50:06 +02:00
@font-face{
font-family: "main";
src:url('../fonts/CourierCode-Italic.ttf');
2017-10-24 10:50:06 +02:00
font-weight: normal;
font-style: italic;
2017-10-20 15:59:16 +02:00
}
@font-face{
font-family: "main";
src:url('../fonts/CourierCode-BoldItalic.ttf');
font-weight: bold;
font-style: italic;
}
2017-09-14 23:40:20 +02:00
body{
position: relative;
width: calc(100% - 50px);
2017-09-14 23:40:20 +02:00
min-width: 500px;
top:0px;
left:0px;
margin:14px auto 5em auto;
2017-09-14 23:40:20 +02:00
padding: 0px 15px;
font-family: "main", monospace;
2018-03-20 22:45:05 +01:00
font-size: 15px;
line-height:1.8;
2018-02-27 08:26:28 +01:00
background-color: rgba(252, 255, 120, .7);
color:black;
}
2017-10-20 15:59:16 +02:00
#content{
margin-top:1em;
}
2017-10-20 15:59:16 +02:00
/****************************/
/* general elements */
a {
color:#7e5211;
2017-07-06 14:28:42 +02:00
}
2017-09-14 23:40:20 +02:00
a:hover{
border:0;
text-decoration: none;
}
2017-07-06 14:28:42 +02:00
2018-03-08 18:35:55 +01:00
a.h-card{
color:black;
text-decoration: none;
}
2017-09-14 23:40:20 +02:00
hr, .separator hr {
border:0;
2017-11-03 13:49:21 +01:00
border-top:1px dotted #7e5211;
color: black;
margin:1em 0 .5em;
2017-07-06 14:28:42 +02:00
}
blockquote {
font-style:italic;
2017-07-06 14:28:42 +02:00
}
ul {
padding-left:0px;
2017-07-06 14:28:42 +02:00
}
2017-09-12 14:56:24 +02:00
h1, h2, h3, h4, h5, h6, #header{
2017-10-20 15:59:16 +02:00
margin:0;
padding:0;
2017-09-12 14:56:24 +02:00
}
h1{
font-family: "header";
font-size: 100%;
}
h2{
font-size: 100%;
2018-03-20 22:45:05 +01:00
/*font-weight: normal;*/
text-decoration: underline;
}
h3{
font-size: 100%;
font-weight: normal;
}
2017-10-20 15:59:16 +02:00
p{
margin:0 0 1em 0;
}
pre{
line-height: 1.0;
2017-09-14 23:40:20 +02:00
font-family: monospace;
}
2017-07-06 14:28:42 +02:00
.paginator{
float:right;
margin:0px;
2017-07-06 14:28:42 +02:00
}
#post-list {
padding-left:0px;
margin-top:0px;
}
ul li{
list-style: none;
margin: 0 0 0 20px;
}
ul li:before{
content: '* ';
margin: 0 4px 0 -20px;
}
/* article info */
.article-info{
font-size: 14px;
margin:0;
}
/* date */
.article-info .event-details{
color:#7e5211;
}
/* featured image */
.article-info .featured-image img{
width:100%;
margin:0.5em 0;
}
/* category & translation link */
.post-info{
font-size: 12px;
font-style: italic;
}
.post-info sup{
font-size: 100%;
}
.post-info .categories:before, .post-info .article-translation:before{
content:'→';
color:#7e5211;
}
2017-07-06 14:28:42 +02:00
2017-09-14 23:40:20 +02:00
/****************************/
/* header & #translation */
header {
width:calc(100% - 50px);
margin-top:0;
margin-bottom:5em;
padding-bottom:1em;
font-family: 'main';
font-size: 14px;
line-height: 1.6;
}
header img{
width: 50px;
display: inline;
margin: 0;
vertical-align: calc(-2px);
}
/* custom font size for index */
#content.index header{
}
header p{
display: inline;
}
2018-03-08 18:35:55 +01:00
#stream{
2018-03-09 19:57:16 +01:00
position: absolute;
width: 100%;
}
2018-03-09 19:57:16 +01:00
#stream a .container{
2018-03-07 18:59:24 +01:00
background-clip: padding-box;
background-position: center center;
background-size: cover;
height: 600px;
width: 100%;
2018-03-09 19:57:16 +01:00
background-color: black;
2018-03-07 18:59:24 +01:00
}
/* reset header img styles */
2018-03-09 19:57:16 +01:00
#stream a .container img{
min-width: none;
min-height: none;
width: none;
height: none;
}
2018-03-09 19:57:16 +01:00
#stream a{
display: block;
}
#stream.overview{
width: 100%;
}
2018-03-09 19:57:16 +01:00
div#stream a:nth-child(odd) {
transform: skew(-2deg);
2018-03-07 18:59:24 +01:00
}
2018-03-09 19:57:16 +01:00
div#stream a:nth-child(even) {
transform: skew(2deg);
2018-03-07 18:59:24 +01:00
}
2017-09-14 23:40:20 +02:00
#translation{
position: absolute;
2017-10-20 15:59:16 +02:00
font-size: 12px;
top:0px;
right:15px;
2017-09-14 23:40:20 +02:00
margin:0;
padding:0;
text-align: right;
2017-09-14 23:40:20 +02:00
}
#translation li{
list-style: none;
}
#translation li.active a{
text-decoration: none;
}
#translation li.active{
font-weight: bold;
}
2017-07-06 14:28:42 +02:00
2017-09-14 23:40:20 +02:00
/****************************/
/* main/index overview page */
#content #post-list{
width: 100%;
}
2017-10-20 15:59:16 +02:00
.summary p{
display: inline;
}
2018-03-20 22:45:05 +01:00
.article.hentry{
width:calc(400px + 2em);
/*font-size: 125%;*/
}
2017-09-12 14:56:24 +02:00
.hentry{
display: inline-block;
width: 200px;
font-size: 13.5px;
line-height: 1.65;
margin:0 2em 5em 0;
2017-09-14 23:40:20 +02:00
padding:0;
2017-10-20 15:59:16 +02:00
vertical-align: top;
}
.hentry .article-info{
width: 100%;
2017-10-20 15:59:16 +02:00
}
.hentry .article-info .event-details{
margin:5px 0 2px;
2018-03-20 22:45:05 +01:00
min-height: 1.65em;
}
/* title */
.hentry .article-info .entry-title{
display: block;
width: 100%;
font-family: "header";
font-size: 165%;
font-weight: bold;
line-height: 1.15;
letter-spacing: -0.01em;
margin:0;
}
.hentry .article-info .entry-title a{
text-decoration: none;
}
/* ascii art styling */
.hentry pre{
font-size: 14.4px;
font-weight: normal;
2018-02-27 08:26:28 +01:00
clear:both; /*to prevent the ascii to break up*/
2017-09-14 23:40:20 +02:00
}
/* double-blocks for super important categories */
.hentry.current, .hentry.current .article-info, .hentry.current .featured-image img{
width: calc(400px + 2em);
2017-11-03 13:49:21 +01:00
}
2017-09-14 23:40:20 +02:00
/****************************/
/* article */
#content.body .entry-title{
display:inline-block;
font-family: "header";
font-size: 250%;
line-height: 1.25;
font-weight: bold;
2018-03-20 22:45:05 +01:00
margin:30px 0 30px 250px;
color:#7e5211;
2018-03-20 22:45:05 +01:00
width: calc(100% - 250px);
2017-11-03 13:49:21 +01:00
}
#content.body .article-info{
width:200px;
float: left;
}
.entry-content-container, #page-content-container{
2018-03-20 22:45:05 +01:00
width: calc(100% - 260px);
float: right;
2018-02-28 13:13:34 +01:00
padding:0 30px;
margin-bottom:25px;
}
.entry-content, #page-content{
position: relative;
2018-03-20 22:45:05 +01:00
max-width: 750px;
margin:-3px auto 0 20px;
2017-09-14 23:40:20 +02:00
}
.entry-content img, #page-content img{
max-height:400px;
}
.entry-content .seperator hr, #page-content hr{
width:100%;
}
/* Roel's complex footnote effect */
.entry-content span.simple-footnote-container{
float: left;
width: 200px;
margin:.5em 0 0 -270px;
}
.entry-content span.simple-footnote-content{
display: block;
font-size: 12px;
line-height: 1.3;
word-wrap:break-word;
}
.entry-content blockquote{
font-size: 150%;
margin:1em 3em 0;
line-height: 1.5;
}
2017-09-14 23:40:20 +02:00
/****************************/
/* other */
2017-07-06 14:28:42 +02:00
.highlight{
margin: auto;
max-width:800px;
}
.divider {
font-size:14.8px;
2017-07-06 14:28:42 +02:00
width:100%;
line-height:1em;
background-color:white;
}
#categories {
font-size: 40px;
margin-top: 2em;
text-align: center;
2017-07-06 14:28:42 +02:00
}
2018-03-20 22:45:05 +01:00
/*.simple-footnotes{
2017-07-06 14:28:42 +02:00
font-size:14px;
margin:auto;
max-width:800px;
}
2018-03-20 22:45:05 +01:00
*/
2017-07-06 14:28:42 +02:00
.author{
display: none;
2018-03-20 22:45:05 +01:00
}
/*footnotes*/
sup span{
float: right;
width: 200px;
margin:0.25em -150px 1em 3em;
clear:both;
display: inline;
}
sup span p{
display: inline;
}