49 lines
647 B
CSS
49 lines
647 B
CSS
.page {
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
padding-bottom: 15px;
|
|
position: relative;
|
|
}
|
|
|
|
.posts {
|
|
max-width: 755px;
|
|
margin-right: 215px;
|
|
}
|
|
|
|
.infobox {
|
|
position: absolute;
|
|
top: 0;
|
|
left: calc(100% - 215px);
|
|
width: 200px;
|
|
padding: 10px;
|
|
line-height: 130%;
|
|
}
|
|
|
|
.posting-title {
|
|
padding: 10px;
|
|
background-color:#f3f2ea;
|
|
}
|
|
|
|
.posting-body {
|
|
line-height: 150%;
|
|
}
|
|
|
|
.posting-date {
|
|
text-align: right;
|
|
font-size: 90%;
|
|
}
|
|
|
|
pre, code {
|
|
color: #000000;
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
.infobox {
|
|
display: none;
|
|
}
|
|
|
|
.posts {
|
|
margin-right: 0;
|
|
}
|
|
}
|