45 lines
1,012 B
CSS
45 lines
1,012 B
CSS
|
|
/*
|
||
|
|
* 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;
|
||
|
|
padding: 1px;
|
||
|
|
}
|
||
|
|
|
||
|
|
section.reply {
|
||
|
|
padding: 5px;
|
||
|
|
overflow: scroll;
|
||
|
|
border: 8px dotted white;
|
||
|
|
}
|
||
|
|
section.replyauthor {
|
||
|
|
padding: 2px;
|
||
|
|
overflow: scroll;
|
||
|
|
border: 2px dotted white;
|
||
|
|
}
|