b9922b8b7e
FossilOrigin-Name: be86fd86012ce13cfd6543d374870491da9d4fa64208de2ac22575f2dafdf3b7
184 lines
2.5 KiB
CSS
184 lines
2.5 KiB
CSS
body
|
|
{
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
background-color: #f2f2f2;
|
|
}
|
|
|
|
#display-wrapper
|
|
{
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
#display
|
|
{
|
|
overflow: hidden;
|
|
background-color: #ffffff;
|
|
width: 1000px;
|
|
border-radius: 5px;
|
|
border: 1pxnn solid #bababa;
|
|
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
#navbar
|
|
{
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 2px solid #cacaca;
|
|
}
|
|
|
|
#navbar img
|
|
{
|
|
display: inline-block;
|
|
margin: 2px 2px 2px 8px;
|
|
}
|
|
|
|
#navbar span.info
|
|
{
|
|
margin-left: 15px;
|
|
color: #202020;
|
|
font-variant: small-caps;
|
|
font-size: 28px;
|
|
}
|
|
|
|
#navbar-right
|
|
{
|
|
padding-right: 8px;
|
|
}
|
|
|
|
.alignend
|
|
{
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
div#content
|
|
{
|
|
display: flex;
|
|
}
|
|
|
|
div#content main
|
|
{
|
|
flex: 1;
|
|
min-width: 0;
|
|
min-height: 600px;
|
|
}
|
|
|
|
div#content aside
|
|
{
|
|
width: 180px;
|
|
max-width: 180px;
|
|
min-width: 180px;
|
|
background-color: #fcfcfc;
|
|
}
|
|
|
|
#leftbar
|
|
{
|
|
border-right: 1px solid #cacaca;
|
|
}
|
|
|
|
#leftbar ul
|
|
{
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#leftbar ul li
|
|
{
|
|
list-style-type: none;
|
|
}
|
|
|
|
input[type=button], input[type=submit], .sidebarbtn
|
|
{
|
|
background: linear-gradient(#fff, #f1f1f1);
|
|
color: #000;
|
|
}
|
|
|
|
input[type=button]:hover, input[type=submit]:hover, .sidebarbtn:hover
|
|
{
|
|
background: linear-gradient(#aa0000, #600000);
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
input[type=button]:active, input[type=submit]:active, .sidebarbtn:active
|
|
{
|
|
background: linear-gradient(#600000, #aa0000);
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
input[type=button], input[type=submit]
|
|
{
|
|
border: 1px solid #cacaca;
|
|
padding: 3px 15px;
|
|
}
|
|
|
|
.sidebarbtn
|
|
{
|
|
border-bottom: 1px solid #dadada;
|
|
display: block;
|
|
padding: 8px 8px 8px 16px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#rightbar
|
|
{
|
|
border-left: 1px solid #cacaca;
|
|
}
|
|
|
|
/* Posts */
|
|
.status
|
|
{
|
|
display: flex;
|
|
margin: 5px;
|
|
}
|
|
|
|
.status:not(:last-child)
|
|
{
|
|
border-bottom: 2px dotted #cacaca;
|
|
}
|
|
|
|
.status .profile-picture
|
|
{
|
|
display: inline-block;
|
|
}
|
|
|
|
.status .status-info
|
|
{
|
|
flex: 1;
|
|
display: flex;
|
|
margin: 0 5px 5px;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.status .instance-info
|
|
{
|
|
font-style: italic;
|
|
text-decoration: none;
|
|
margin: 0 3px;
|
|
}
|
|
|
|
.status .poster-stats
|
|
{
|
|
display: flex;
|
|
}
|
|
|
|
.status .username
|
|
{
|
|
font-weight: bold;
|
|
}
|
|
|
|
.status .status-content
|
|
{
|
|
margin: 2px 0 0 0;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.status-visibility
|
|
{
|
|
color: #808080;
|
|
}
|