fel_website/output/theme/css/main.css

71 lines
974 B
CSS
Raw Normal View History

2020-04-03 13:05:13 +00:00
*{
font-family: 'Courier New', Courier, monospace;
2020-04-24 15:55:13 +00:00
background-color:#CEF6EC;
}
text, a{
font-size: 1.5em;
}
h1{
font-size: 2em;
font-weight: bold;
2020-04-03 13:05:13 +00:00
}
.sidebar{
height: 100%;
2020-04-24 15:55:13 +00:00
width: 13%;
2020-04-03 13:05:13 +00:00
z-index: 1; /* Stay on top */
top: 0; /* Stay at the top */
left: 0;
padding-top: 20px;
position: fixed;
2020-04-24 15:55:13 +00:00
border: solid;
border-width: 1px;
border-top: unset;
border-bottom: unset;
2020-04-03 13:05:13 +00:00
border-right-color: black;
2020-04-24 15:55:13 +00:00
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
a {
color: black;
text-decoration: unset;
}
a:hover{
color: #808080;
}
.article-anchors {
padding: 1em;
2020-04-03 13:05:13 +00:00
}
.content{
2020-04-24 15:55:13 +00:00
margin-left: 13%;
padding-left: 2em;
max-width: 50%;
line-height: 1.2;
2020-04-03 13:05:13 +00:00
}
/* CSS MAIN */
h2{
font-style: italic;
}
a:before{
color: #85adad;
content: '> ';
2020-04-24 15:55:13 +00:00
}
img{
max-width: 60%;
border-bottom: 10em;
border-style: solid;
border-width: 2px;
2020-04-03 13:05:13 +00:00
}