83 lines
1.5 KiB
CSS
83 lines
1.5 KiB
CSS
body {
|
|
font-family: sans-serif;
|
|
margin: 20px 20px 0px 20px;
|
|
background-color: rgb(173.5214173228, 183.6737007874, 161.0262992126);
|
|
}
|
|
|
|
#topnav {
|
|
padding: 10px;
|
|
display: flex;
|
|
justify-content: end;
|
|
background-color: #c1ceb1;
|
|
}
|
|
|
|
#threadnav {
|
|
padding-bottom: 10px;
|
|
padding-left: 10px;
|
|
background-color: rgb(143.7039271654, 144.3879625984, 142.8620374016);
|
|
}
|
|
|
|
.thread-title {
|
|
margin: 0;
|
|
}
|
|
|
|
.post {
|
|
display: grid;
|
|
grid-template-columns: 200px 1fr;
|
|
grid-template-rows: 1fr;
|
|
gap: 0;
|
|
grid-auto-flow: row;
|
|
grid-template-areas: "usercard post-content-container";
|
|
border: 2px outset rgb(135.1928346457, 145.0974015748, 123.0025984252);
|
|
}
|
|
|
|
.usercard {
|
|
grid-area: usercard;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 20px 10px;
|
|
border: 4px outset rgb(217.26, 220.38, 213.42);
|
|
background-color: rgb(143.7039271654, 144.3879625984, 142.8620374016);
|
|
border-right: solid 2px;
|
|
}
|
|
|
|
.post-content-container {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
grid-template-rows: 0.2fr 2.5fr;
|
|
gap: 0px 0px;
|
|
grid-auto-flow: row;
|
|
grid-template-areas: "post-info" "post-content";
|
|
grid-area: post-content-container;
|
|
}
|
|
|
|
.post-info {
|
|
grid-area: post-info;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 5px 20px;
|
|
}
|
|
|
|
.post-content {
|
|
grid-area: post-content;
|
|
padding: 5px 20px;
|
|
}
|
|
|
|
.avatar {
|
|
width: 90%;
|
|
height: 90%;
|
|
object-fit: contain;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.username-link {
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.user-status {
|
|
text-align: center;
|
|
}
|
|
|
|
/*# sourceMappingURL=style.css.map */
|