forked from mirrors/treebird
0324f5fde6
FossilOrigin-Name: 0bfa68ec767c77bdd68cbf207670dff915964730cd5ef9c6261082cf2c1b516a
773 lines
12 KiB
CSS
773 lines
12 KiB
CSS
|
|
|
|
/* Look, I tried my best to make this theme compatible with browsers like Netsurf and stuff, I HATE
|
|
the modern web and flexboxes and stuff, so as a result, you WILL see some fugly things in here
|
|
that you will probably want to cleanup or throw out completely, this CSS is a big hack.
|
|
|
|
Other themes do not need to be compatible with Netsurf and older browsers or use tables,
|
|
I just wanted this to be as compatible as possible, go wild with your own themes */
|
|
|
|
body
|
|
{
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
background-color: #f6f6f6;
|
|
}
|
|
|
|
.hidden
|
|
{
|
|
display: none;
|
|
}
|
|
|
|
.pointer
|
|
{
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Cleans up most of the tables */
|
|
table.ui-table td
|
|
{
|
|
padding: 0;
|
|
margin: 0;
|
|
border-collapse: collapse !important;
|
|
vertical-align: top;
|
|
}
|
|
|
|
#display
|
|
{
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
overflow: hidden;
|
|
background-color: #ffffff;
|
|
width: 1000px;
|
|
border-radius: 5px;
|
|
border: 1px solid #dadada;
|
|
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
#navbar
|
|
{
|
|
border-top: 2px solid #fff;
|
|
background: linear-gradient(#fafafa, #f3f3f3);
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 5px;
|
|
border-bottom: 2px solid #cacaca;
|
|
}
|
|
|
|
#navbar img
|
|
{
|
|
display: inline-block;
|
|
margin: 4px 3px 2px 10px;
|
|
}
|
|
|
|
#navbar span.info
|
|
{
|
|
margin-left: 15px;
|
|
color: #202020;
|
|
/* font-variant: small-caps; */
|
|
font-size: 28px;
|
|
}
|
|
|
|
#navbar-right
|
|
{
|
|
padding-right: 8px;
|
|
flex: 1;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
#login-header
|
|
{
|
|
margin-right: 15px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.alignend
|
|
{
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
#main
|
|
{
|
|
width: 610px;
|
|
max-width: 610px !important;
|
|
min-width: 610px;
|
|
border-collapse: collapse !important;
|
|
padding: 0;
|
|
}
|
|
|
|
#content
|
|
{
|
|
border-collapse: collapse !important;
|
|
min-height: 600px;
|
|
}
|
|
|
|
.sidebar
|
|
{
|
|
width: 180px;
|
|
min-height: 600px;
|
|
max-width: 180px;
|
|
min-width: 180px;
|
|
background-color: #fcfcfc;
|
|
}
|
|
|
|
#leftbar
|
|
{
|
|
border-right: 1px solid #cacaca;
|
|
}
|
|
|
|
#leftbar ul
|
|
{
|
|
margin: 0px 0px 10px 0px;
|
|
padding: 0;
|
|
}
|
|
|
|
#leftbar ul li
|
|
{
|
|
list-style-type: none;
|
|
}
|
|
|
|
|
|
#rightbar
|
|
{
|
|
border-left: 1px solid #cacaca;
|
|
min-width: 210px;
|
|
max-width: 210px;
|
|
}
|
|
|
|
|
|
/*************************************************
|
|
* COMMON ELEMENTS *
|
|
*************************************************/
|
|
|
|
table.present
|
|
{
|
|
border: 1px solid #cacaca;
|
|
}
|
|
|
|
table.present th, table.present td
|
|
{
|
|
padding: 2px 5px;
|
|
}
|
|
|
|
#env-table
|
|
{
|
|
margin-top: 5px;
|
|
}
|
|
|
|
/*************************************************
|
|
* BUTTONS *
|
|
*************************************************/
|
|
input[type=button], input[type=submit], .sidebarbtn, .btn
|
|
{
|
|
background: linear-gradient(#fff, #f7f7f7);
|
|
color: #000;
|
|
text-decoration: none;
|
|
}
|
|
|
|
input[type=button]:hover, input[type=submit]:hover, .sidebarbtn:hover, .btn:hover
|
|
{
|
|
background: linear-gradient(#aa0000, #600000);
|
|
border-color: #400000;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
input[type=button]:active, input[type=submit]:active, .sidebarbtn:active, .btn:active
|
|
{
|
|
background: linear-gradient(#600000, #aa0000);
|
|
border-color: #400000;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
input[type=button], input[type=submit]
|
|
{
|
|
border: 1px solid #cacaca;
|
|
padding: 3px 15px;
|
|
}
|
|
|
|
/* Make first button glue to header */
|
|
#leftbar ul:first-child .sidebarbtn
|
|
{
|
|
border-top: 0;
|
|
}
|
|
|
|
.sidebarbtn
|
|
{
|
|
border-bottom: 1px solid #dadada;
|
|
display: block;
|
|
padding: 8px 8px 8px 16px;
|
|
}
|
|
|
|
ul li:first-child a.sidebarbtn
|
|
{
|
|
border-top: 1px solid #dadada;
|
|
}
|
|
|
|
|
|
/****************************
|
|
* Notifications *
|
|
***************************/
|
|
.notification
|
|
{
|
|
border-bottom: 1px solid #dadada;
|
|
}
|
|
|
|
.pfp-compact-td
|
|
{
|
|
width: 16px;
|
|
}
|
|
|
|
.pfp-compact-td img
|
|
{
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.notification-compact
|
|
{
|
|
min-width: 100%;
|
|
}
|
|
|
|
.notification-compact p
|
|
{
|
|
margin: 0;
|
|
}
|
|
.notification-compact .notification-info
|
|
{
|
|
font-size: 12px;
|
|
padding-left: 2px;
|
|
padding-right: 2px;
|
|
}
|
|
|
|
.notification-compact .notification-content
|
|
{
|
|
color: #808080;
|
|
font-size: 12px;
|
|
padding: 2px 0 2px 0;
|
|
}
|
|
|
|
.notification-compact .notification-stats
|
|
{
|
|
color: #500000;
|
|
font-size: 10px;
|
|
}
|
|
|
|
/***************************
|
|
* Statuses *
|
|
**************************/
|
|
.status
|
|
{
|
|
padding: 6px 2px 0 6px;
|
|
border-bottom: 1px solid #cacaca !important;
|
|
width: 100%;
|
|
border-spacing: 0px;
|
|
}
|
|
|
|
.status .profile-picture
|
|
{
|
|
display: inline-block;
|
|
width: 52px;
|
|
min-width: 52px;
|
|
height: 52px;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
border-radius: 4px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.pfp-td
|
|
{
|
|
width: 56px;
|
|
border-collapse: collapse !important;
|
|
padding: 6px;
|
|
}
|
|
|
|
.pfp-td img
|
|
{
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
.status tr
|
|
{
|
|
width: auto;
|
|
}
|
|
|
|
|
|
.status .status-info
|
|
{
|
|
margin: 0 5px 0px;
|
|
min-width: 0;
|
|
width: auto;
|
|
padding: 0 5px 0 5px;
|
|
display: flex;
|
|
}
|
|
|
|
.status .status-info > table.ui-table
|
|
{
|
|
width: 100%;
|
|
}
|
|
|
|
.status .status-info table.ui-table, .status .status-info table.ui-table td, .status .status-info table.ui-table tr
|
|
{
|
|
border-collapse: collapse !important;
|
|
border-spacing: 0px;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.status .instance-info
|
|
{
|
|
font-style: italic;
|
|
text-decoration: none;
|
|
margin: 0 4px 0 6px;
|
|
font-size: 14px;
|
|
padding-top: 1px;
|
|
}
|
|
|
|
.status .poster-stats
|
|
{
|
|
display: flex;
|
|
/* To maintain compatibility while keeping it a flexbox, we have to
|
|
* hardcode the width, sorry! Tables are just weird and I hate CSS */
|
|
max-width: 520px;
|
|
}
|
|
|
|
.status .username
|
|
{
|
|
font-weight: bold;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
min-width: 0;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.status .status-content
|
|
{
|
|
margin: 2px 0 0 0;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.status .status-content p
|
|
{
|
|
margin: 2px 0 0 0;
|
|
}
|
|
|
|
.status-visibility
|
|
{
|
|
color: #808080;
|
|
display: inline;
|
|
font-size: 12px;
|
|
margin: 3px 0 0 3px;
|
|
}
|
|
|
|
.status-interact
|
|
{
|
|
margin: 8px 0 0 0;
|
|
}
|
|
|
|
.status-interact table.ui-table
|
|
{
|
|
border-collapse: collapse !important;
|
|
padding: 0;
|
|
}
|
|
|
|
.status-interact table.ui-table tr
|
|
{
|
|
border-collapse: collapse !important;
|
|
padding: 0;
|
|
}
|
|
|
|
/***************************
|
|
* Element Grouping *
|
|
**************************/
|
|
.group
|
|
{
|
|
padding: 0;
|
|
margin: 0 !important;
|
|
height: 28px;
|
|
|
|
}
|
|
|
|
/* These are a pain for some reason */
|
|
.group-inputbox
|
|
{
|
|
border: 1px solid #cacaca;
|
|
padding-left: 5px;
|
|
border-right: 0px;
|
|
height: 26px;
|
|
}
|
|
|
|
.group-left
|
|
{
|
|
border-top-left-radius: 5px;
|
|
border-bottom-left-radius: 5px;
|
|
}
|
|
|
|
.group-right
|
|
{
|
|
border-top-right-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
}
|
|
|
|
/*************************
|
|
* Config *
|
|
************************/
|
|
#config-page
|
|
{
|
|
padding: 0 12px;
|
|
}
|
|
|
|
#config-page h1
|
|
{
|
|
padding-left: 12px;
|
|
padding-bottom: 6px;
|
|
border-bottom: 1px solid #cacaca;
|
|
}
|
|
|
|
#config-page h3
|
|
{
|
|
margin-left: 15px;
|
|
}
|
|
|
|
#config-page ul
|
|
{
|
|
list-style-type: none;
|
|
padding-left: 15px;
|
|
}
|
|
|
|
|
|
/**********************
|
|
* Profiles *
|
|
**********************/
|
|
.header-btn
|
|
{
|
|
text-decoration: none;
|
|
color: #606060;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.header-btn .btn-content
|
|
{
|
|
color: #000;
|
|
}
|
|
|
|
.btn.header-btn:hover span
|
|
{
|
|
color: #fff;
|
|
}
|
|
|
|
.header-btn span
|
|
{
|
|
display: block;
|
|
text-align: center;
|
|
}
|
|
|
|
.acct-banner
|
|
{
|
|
width: 100%;
|
|
display: flex;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
height: 256px;
|
|
}
|
|
|
|
.acct-pfp
|
|
{
|
|
position: relative;
|
|
z-index: 100;
|
|
border: 3px solid #cacaca;
|
|
background-color: #fff;
|
|
border-radius: 8px;
|
|
width: 100px;
|
|
height: 100px;
|
|
top: -8px;
|
|
left: 150px;
|
|
margin-top: -108px;
|
|
margin-left: -108px;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
.acct-header
|
|
{
|
|
display: flex;
|
|
z-index: 1;
|
|
padding-left: 160px;
|
|
background: linear-gradient(#fff, #f1f1f1);
|
|
border-bottom: 1px solid #cacaca;
|
|
background-color: #e8e8e8;
|
|
}
|
|
|
|
.acct-info-data
|
|
{
|
|
position: relative;
|
|
left: 160px;
|
|
top: 200px;
|
|
font-weight: bold;
|
|
text-shadow: 0px 2px 6px #000;
|
|
}
|
|
|
|
.acct-displayname
|
|
{
|
|
font-size: 26px;
|
|
display: block;
|
|
color: #fff;
|
|
}
|
|
|
|
.acct-username
|
|
{
|
|
font-size: 14px;
|
|
color: #dadada;
|
|
display: block;
|
|
font-weight: bold;
|
|
text-shadow: 0px 0px 5px #000;
|
|
}
|
|
|
|
.header-btn
|
|
{
|
|
display: inline-block;
|
|
padding: 8px 15px;
|
|
margin: 0;
|
|
}
|
|
|
|
/****************
|
|
* Statusbox *
|
|
****************/
|
|
.statusbox
|
|
{
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 5px;
|
|
}
|
|
|
|
.statusbox textarea
|
|
{
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.statusbox .statusfooter
|
|
{
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.statusbox .statusfooter-left
|
|
{
|
|
flex: 1;
|
|
}
|
|
|
|
.status-interact label
|
|
{
|
|
display: block;
|
|
padding: 3px 8px;
|
|
}
|
|
|
|
.status-interact svg.repeat.active
|
|
{
|
|
stroke: #08d345;
|
|
}
|
|
|
|
.status-interact svg.like.active
|
|
{
|
|
fill: #fcd202;
|
|
stroke: #fcd202;
|
|
}
|
|
|
|
.status-interact svg.like:hover,
|
|
.status-interact svg.like:active,
|
|
.statis-interact svg.like:focus
|
|
{
|
|
stroke: #fcd202;
|
|
pointer: select;
|
|
}
|
|
|
|
.status-interact svg.repeat:hover,
|
|
.status-interact svg.repeat:active,
|
|
.statis-interact svg.repeat:focus
|
|
{
|
|
stroke: #08d345;
|
|
}
|
|
|
|
.status-interact .count
|
|
{
|
|
font-size: 14px;
|
|
padding-bottom: 3px;
|
|
|
|
/* Move up */
|
|
position: relative;
|
|
top: -5px;
|
|
margin-bottom: -5px;
|
|
}
|
|
|
|
/* Emoji reacts */
|
|
.emoji-react-box
|
|
{
|
|
border-radius: 4px;
|
|
border: 1px solid #cacaca;
|
|
}
|
|
|
|
.form-group
|
|
{
|
|
padding: 5px;
|
|
display: block;
|
|
}
|
|
|
|
/* Simple page layout */
|
|
.simple-page
|
|
{
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.simple-page h1
|
|
{
|
|
padding-left: 12px;
|
|
padding-bottom: 6px;
|
|
border-bottom: 1px solid #cacaca;
|
|
}
|
|
|
|
.simple-page h3
|
|
{
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.simple-page ul
|
|
{
|
|
list-style-type: none;
|
|
padding-left: 15px;
|
|
}
|
|
|
|
.simple-page p
|
|
{
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
/* Attachments */
|
|
.attachments img
|
|
{
|
|
min-width: 100px;
|
|
}
|
|
|
|
.attachments
|
|
{
|
|
margin: 10px 0 3px 0;
|
|
}
|
|
|
|
.attachment-container
|
|
{
|
|
z-index: 3;
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sensitive
|
|
{
|
|
z-index: 2;
|
|
filter: blur(16px);
|
|
transition: filter .4s;
|
|
}
|
|
|
|
.sensitive:hover
|
|
{
|
|
filter: none;
|
|
}
|
|
|
|
.statusbox textarea
|
|
{
|
|
border: 1px solid #cacaca;
|
|
}
|
|
|
|
/* Emoji reacts */
|
|
.emoji-reactions
|
|
{
|
|
display: block;
|
|
padding: 0;
|
|
margin-top: 8px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.emoji-react-box
|
|
{
|
|
display: inline-block;
|
|
list-style-type: none;
|
|
padding: 3px 7px;
|
|
margin: 0 4px;
|
|
}
|
|
|
|
/*************************************************
|
|
* LISTS *
|
|
*************************************************/
|
|
ul.large-list
|
|
{
|
|
width: 500px;
|
|
border-radius: 15px;
|
|
background-color: #f8f8f8;
|
|
border: 1px solid #cacaca;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
ul.large-list li
|
|
{
|
|
list-style-type: none;
|
|
margin: 0;
|
|
}
|
|
|
|
ul.large-list li a
|
|
{
|
|
display: block;
|
|
padding: 15px;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.lists-view-header
|
|
{
|
|
text-align: center;
|
|
}
|
|
|
|
.lists-view-container ul
|
|
{
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.lists-view-container ul li:not(:last-child)
|
|
{
|
|
border-bottom: 1px solid #dadada;
|
|
}
|
|
|
|
/* Navigation */
|
|
.navigation
|
|
{
|
|
table-layout: fixed;
|
|
background-color: #eaeaea;
|
|
color: #000;
|
|
width: 100%;
|
|
border-spacing: 0px;
|
|
box-shadow: 0px 1px 0px #dadada;
|
|
}
|
|
|
|
.navigation tr
|
|
{
|
|
padding: 0;
|
|
}
|
|
|
|
.navigation td
|
|
{
|
|
padding: 8px !important;
|
|
}
|
|
|
|
.navigation tr td:not(:last-child)
|
|
{
|
|
border-right: 1px solid #dadada;
|
|
}
|
|
|