119 lines
1.6 KiB
CSS
119 lines
1.6 KiB
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #03071e;
|
|
color: #EAE2B7;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
font-size: 150%;
|
|
text-decoration: none;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 250%;
|
|
margin: 0;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
font-size: 175%;
|
|
}
|
|
|
|
.divider {
|
|
height: 3px;
|
|
background-color: #ad080f;
|
|
}
|
|
|
|
.articles {
|
|
margin: auto;
|
|
width: 80%;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
.article {
|
|
padding: 2%;
|
|
}
|
|
|
|
.article:hover {
|
|
color: white;
|
|
}
|
|
|
|
.article-body {
|
|
width: 60%;
|
|
font-size: 80%;
|
|
font-weight: normal;
|
|
margin-top: 1%;
|
|
font-family: 'Roboto Mono', monospace;
|
|
}
|
|
|
|
.article-body, .article-body-fulltext {
|
|
width: 100%;
|
|
}
|
|
|
|
.article-description {
|
|
font-weight: 500;
|
|
font-family: 'Roboto Mono', monospace;
|
|
color: #D00000;
|
|
font-size: 75%;
|
|
margin-top: 0.5%;
|
|
}
|
|
|
|
.article-description p {
|
|
white-space: pre;
|
|
}
|
|
|
|
#logo {
|
|
width: 3%;
|
|
padding-left: 2.5%;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
font-family: 'Roboto', sans-serif
|
|
}
|
|
|
|
.navigation {
|
|
background-color: black;
|
|
color: inherit;
|
|
font-family: 'Roboto', sans-serif;
|
|
width: 100%;
|
|
padding-top: 1%;
|
|
padding-bottom: 1%;
|
|
height: 5%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.navigation a {
|
|
padding-left: 2%;
|
|
padding-right: 2%;
|
|
font-size: 250%;
|
|
font-weight: bolder;
|
|
|
|
}
|
|
|
|
.foot {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
margin-top: 2.5%;
|
|
margin-bottom: 2.5%;
|
|
}
|
|
|
|
.foot a {
|
|
font-family: 'Roboto Mono', monospace;
|
|
font-weight: normal;
|
|
padding-left: 10%;
|
|
padding-right: 10%;
|
|
}
|
|
|
|
/*# sourceMappingURL=index.css.map */
|