Files
interchan/board/static/board/style.css
Alek Ratzloff 994e4904a6 Add page count and links to bottom of board view
Current page shows up on the bottom of every board with next/prev links
where applicable.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2022-05-07 15:14:50 -07:00

107 lines
1.2 KiB
CSS

hr {
color: #ededed;
}
.column {
float: left;
width: 33.33%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Create thread/post form */
.post_form_image_specs {
font-size: small;
}
/* Pagination */
.pagination {
margin: auto;
width: 50%;
text-align: center;
}
/* Posts */
/*.post_body { }*/
.post_image_info {
font-size: small;
padding-bottom: 5px;
}
.post_image_thumbnail {
float: left;
padding-right: 5px;
}
.post_content:after {
content: "";
display: table;
clear: both;
}
.post_id {
cursor: pointer;
}
.post_id:hover {
color: #888;
}
.post_subject {
font-weight: bold;
}
.post_name {
font-weight: bold;
}
.post {
background-color: #d9d9d9;
padding: 10px;
}
.reply {
background-color: #eee;
padding: 10px;
margin: 5px 0 0 0;
}
.replies_elided {
font-weight: italic;
font-size: small;
}
.quote {
color: #595;
}
.post_link {
text-decoration: underline;
}
.post_link_broken {
text-decoration: line-through;
}
/* Misc */
a:link {
color:#555;
}
a:visited {
color: #555;
}
a:hover {
color: #888;
}
a:active {
color: #888;
}