2026-03-17 12:49:38 +00:00
|
|
|
/*
|
|
|
|
|
* This is a manifest file that'll be compiled into application.css.
|
|
|
|
|
*
|
|
|
|
|
* With Propshaft, assets are served efficiently without preprocessing steps. You can still include
|
|
|
|
|
* application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
|
|
|
|
|
* cascading order, meaning styles declared later in the document or manifest will override earlier ones,
|
|
|
|
|
* depending on specificity.
|
|
|
|
|
*
|
|
|
|
|
* Consider organizing styles into separate files for maintainability.
|
|
|
|
|
*/
|
|
|
|
|
body {
|
|
|
|
|
background-color: pink;
|
|
|
|
|
}
|
|
|
|
|
section.threadindex {
|
|
|
|
|
border: 5px groove hotpink;
|
|
|
|
|
width: 750px;
|
|
|
|
|
height: 800px;
|
|
|
|
|
padding: .8%;
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
section.forumtopic {
|
|
|
|
|
border: 3px inset hotpink;
|
|
|
|
|
padding: 1%;
|
|
|
|
|
overflow: scroll;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
section.threadtitle {
|
|
|
|
|
border: 1px solid black;
|
|
|
|
|
overflow: scroll;
|
2026-03-18 01:57:09 +00:00
|
|
|
margin-bottom: 40px;
|
|
|
|
|
text-align: center; }
|
2026-03-17 12:49:38 +00:00
|
|
|
|
|
|
|
|
section.reply {
|
|
|
|
|
padding: 5px;
|
|
|
|
|
overflow: scroll;
|
|
|
|
|
border: 8px dotted white;
|
|
|
|
|
}
|
|
|
|
|
section.replyauthor {
|
|
|
|
|
padding: 2px;
|
|
|
|
|
overflow: scroll;
|
|
|
|
|
border: 2px dotted white;
|
|
|
|
|
}
|
2026-03-18 01:57:09 +00:00
|
|
|
|
|
|
|
|
section.post {
|
|
|
|
|
border: 3px inset white;
|
|
|
|
|
padding-left: 3%;
|
|
|
|
|
padding-right: 3%;
|
|
|
|
|
padding-bottom: 3%;
|
|
|
|
|
}
|
|
|
|
|
|