factor/extra/webapps/planet/planet.css

49 lines
647 B
CSS
Raw Normal View History

2020-02-27 17:28:51 -05:00
.page {
padding-left: 15px;
padding-right: 15px;
padding-bottom: 15px;
2020-03-01 17:35:04 -05:00
position: relative;
2020-02-27 17:28:51 -05:00
}
2020-03-01 17:35:04 -05:00
.posts {
max-width: 755px;
margin-right: 215px;
}
.infobox {
position: absolute;
top: 0;
left: calc(100% - 215px);
width: 200px;
padding: 10px;
2020-03-01 17:41:03 -05:00
line-height: 130%;
2008-04-20 05:19:06 -04:00
}
.posting-title {
2020-02-27 17:28:51 -05:00
padding: 10px;
2020-03-02 20:07:30 -05:00
background-color:#f3f2ea;
2008-04-20 05:19:06 -04:00
}
.posting-body {
line-height: 150%;
2008-04-20 05:19:06 -04:00
}
.posting-date {
2020-03-01 17:35:04 -05:00
text-align: right;
font-size: 90%;
2008-04-20 05:19:06 -04:00
}
pre, code {
2020-03-01 17:35:04 -05:00
color: #000000;
}
2020-03-01 17:35:04 -05:00
@media screen and (max-width: 600px) {
.infobox {
display: none;
}
.posts {
margin-right: 0;
}
2008-04-20 05:19:06 -04:00
}