55 lines
936 B
Text
55 lines
936 B
Text
<style>
|
|
@import url(https://fonts.bunny.net/css?family=alef:400);
|
|
#main-content, #header-content {
|
|
margin-top: 50px;
|
|
margin: auto;
|
|
width: 50%;
|
|
}
|
|
#main-content {
|
|
text-align: left;
|
|
}
|
|
#header-content {
|
|
text-align: center;
|
|
}
|
|
#link-container a {
|
|
color: #808080 !important;
|
|
}
|
|
#link-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 20px;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
}
|
|
* {
|
|
color:white;
|
|
font-family: 'Arial', sans-serif;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
decoration: none;
|
|
color: orange;
|
|
}
|
|
table td {
|
|
color: orange;
|
|
}
|
|
table {
|
|
width: 100%;
|
|
}
|
|
#date-header, .date-item {
|
|
text-align: right;
|
|
}
|
|
#title-header, .post-item {
|
|
text-align: left;
|
|
}
|
|
#footer-content {
|
|
position: fixed;
|
|
bottom: 5;
|
|
left: 0;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
body {
|
|
background-color: #171717;
|
|
}
|
|
</style>
|