123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440 |
- /*
- * Global
- */
-
- * {
- margin: 0;
- padding: 0;
- }
-
- /*
- * Base typography
- */
- body {
- background: #edeae5;
- color: black;
- font-family: "NotoSans-SemiCondensed", sans-serif;
- font-size: 0.75rem;
- }
-
- body b,
- body strong {
- font-family: "NotoSans-SemiCondensedBold", sans-serif;
- font-weight: normal;
- }
-
- body i,
- body em {
- font-family: "NotoSans-SemiCondensedItalic", sans-serif;
- font-style: normal;
- }
-
- /* Debug */
-
- #site_debug td {
- border: 1px solid black;
- }
-
- code,
- pre {
- font-family: "NotoSansMono-SemiCondensed", monospace;
- }
-
- /*
- * Common Elements
- */
-
- a {
- color: #016670;
- text-decoration: none;
- }
-
- a:hover {
- color: black;
- text-decoration: underline;
- }
-
- button:not(.editor-toolbar button),
- input[type="button"],
- input[type="submit"] {
- background: #fbe180;
- box-shadow: 2px 2px 10px -5px slategray;
- }
-
- button:hover,
- input[type="button"]:hover,
- input[type="submit"]:hover {
- background: #fff9c7;
- }
-
- button:focus,
- input[type="button"]:focus,
- input[type="submit"]:focus {
- background: #fff9c7;
- }
-
- /*
- .spoilerButton {
- max-width: 540px;
- }
- */
-
- .forum_post .body a:not([href="#"]),
- .rule_summary a,
- .wiki_article a,
- #actual_rules a,
- .news_post .pad a,
- .store_table a {
- color: #016670;
- text-decoration: none;
- }
-
- .forum_post .body a:hover:not([href="#"]),
- .rule_summary a:hover,
- .wiki_article a:hover,
- #actual_rules a:hover,
- .news_post .pad a:hover,
- .store_table a:hover {
- color: black;
- text-decoration: underline;
- }
-
- h1,
- h2,
- h3,
- h4 {
- margin: 0.5em 0;
- font-weight: bold;
- }
-
- h2 {
- text-align: center;
- /* font-size: 12pt; */
- }
-
- /*
- h4 {
- font-size: 8pt;
- }
- */
-
- p {
- margin: 1em 0.5em;
- /* margin: 10px 5px; */
- }
-
- li {
- margin: 0.5em 2em;
- /* margin: 5px 15px; */
- }
-
- img {
- border: none;
- }
-
- /*
- * Styles generated by the BBCode parser
- */
-
- span.size1 {
- font-size: 0.75em;
- }
-
- span.size2 {
- font-size: 1em;
- }
-
- span.size3 {
- font-size: 1.25em;
- }
-
- span.size4 {
- font-size: 1.5em;
- }
-
- span.size5 {
- font-size: 1.75em;
- }
-
- span.size6 {
- font-size: 2em;
- }
-
- span.size7 {
- font-size: 2.25em;
- }
-
- span.size8 {
- font-size: 2.5em;
- }
-
- span.size9 {
- font-size: 2.75em;
- }
-
- span.size10 {
- font-size: 3em;
- }
-
- /*
- ul.thin { margin: 0px 0px 0px 25px; padding: 0px; }
- ul.thin li { margin: 0px 0px; padding: 0px; }
- */
-
- /*
- * Main Layout
- */
-
- #header {
- background: url("matcha/sam-komon.png");
- margin-bottom: 2em;
- /* margin-bottom: 10px; */
- padding: 0;
- width: 100%;
- }
-
- #content {
- margin: auto;
- margin-top: 2em;
- /* margin-top: 10px; */
- min-width: 720px;
- overflow: hidden;
- width: 90%;
- }
-
- #footer {
- margin-top: 2em;
- /* margin-top: 10px; */
- padding: 1em 0;
- text-align: center;
- width: 100%;
- /*
- opacity: 0;
- transition: ease-in-out 0.2s;
- transition-delay: 0.5s;
- */
- }
-
- /*
- #footer:hover {
- opacity: 1;
- }
- */
-
- #logo {
- background: url("/static/common/logos/matcha.png") no-repeat center;
- background-size: contain;
- width: 250px;
- height: 50px;
- margin: 0 0 0 10%;
- }
-
- #logo a {
- border: none;
- display: block;
- width: 100%;
- height: 50px;
- }
-
- #logo a:hover {
- border: none;
- }
-
- /*
- * Menus/Navigation
- */
-
- /* Main */
-
- #menu {
- background-color: #016670;
- font-size: 1.2em;
- /* font-size: 10pt; */
- text-align: center;
- width: 100%;
- }
-
- #menu > ul {
- display: flex;
- width: 80%;
- margin: 0 auto;
- }
-
- #menu > ul > li {
- display: flex;
- flex: 1 1 auto;
- height: 2.4em;
- /* height: 32px; */
- margin: 0;
- position: relative;
- }
-
- #menu ul > li > a {
- padding: 0.6em 0;
- display: inline-block;
- width: 100%;
- color: white;
- transition: ease-in-out 0.1s;
- text-decoration: none;
- }
-
- #nav_links {
- max-width: 2.4em;
- /* max-width: 40px; */
- }
-
- #menu ul li a.active {
- background-color: #016670;
- }
-
- #menu ul li a:hover {
- /* #016670 44% → 65% brightness */
- background-color: #0298a6;
- color: white;
- text-decoration: none;
- }
-
- /* Dropdown */
-
- #menu .nav_dropdown {
- background: #016670;
- margin-top: 0;
- }
-
- .nav_dropdown > div {
- box-shadow: 2px 2px 10px -2px slategray;
- position: absolute;
- background-color: #016670;
- width: 100%;
- z-index: 99999;
- margin-top: 2.4em;
- /* margin-top: 32px; */
- left: 0;
- }
-
- #nav_links > #links_menu {
- width: 8em;
- margin-left: -80px;
- /*
- width: 120px;
- margin-left: -80px;
- */
- }
-
- .nav_dropdown > div > a {
- display: none;
- color: white;
- height: 2.4em;
- line-height: 2.4em;
- /*
- height: 32px;
- line-height: 32px;
- */
- text-decoration: none;
- }
-
- .nav_dropdown:hover > div > a {
- display: block;
- }
-
- /* Search Bars */
-
- #searchbars {
- text-align: center;
- background-color: #9fedd7;
- box-sizing: content-box;
- padding: 0.5em 10%;
- /* padding: 4px 10%; */
- display: flex;
- }
-
- #searchbars > .search_form {
- flex: 1 1 auto;
- text-align: center;
- margin: 0 0.1em;
- /* margin: 0 3px; */
- }
-
- #searchbars input {
- position: relative;
- border: 1px solid transparent;
- box-sizing: border-box;
- padding: 0.25em 0.25em 0.25em 0.5em;
- /*
- padding: 2px 2px 2px 4px;
- font-size: 0.9em;
- */
- background-color: white;
- width: 100%;
- color: black;
- }
-
- #searchbars ul {
- margin: 0 auto;
- display: block;
- text-align: center;
- }
-
- #searchbars ul li {
- display: inline;
- margin: 0px 1px;
- list-style: none;
- position: relative;
- }
-
- #searchbars ul li ul {
- display: block;
- position: absolute;
- top: 1em;
- left: 0;
- z-index: 1000;
- background-color: white;
- width: 12em;
- margin-top: 1em;
- /* margin-top: 12px; */
- }
-
- #searchbars ul li ul li {
- margin: 0 0 0 0;
- padding: 0;
- display: block;
- width: 100%;
- }
-
- #searchbars ul li ul li.highlight {
- background: white;
- }
-
- #searchbars ul li form {
- display: inline;
- }
-
- /* Upload, Invite, etc. */
-
- #userinfo {
- background: #fff9c7;
- box-shadow: 0 2px 10px -2px slategray;
- color: black;
- padding: 0.5em 0;
- /* padding: 4px 0px; */
- width: 100%;
- text-align: center;
- /* font-size: 8pt; */
- }
-
- /*
- #userinfo img {
- margin-top: -5px;
- }
- */
-
- #userinfo ul {
- display: inline;
- margin: 0 1%;
- /* margin: 0px 0.8%; */
- }
-
- #userinfo ul li {
- display: inline;
- margin: 0 0.1em;
- line-height: 2em;
- /* line-height: 20px; */
- vertical-align: middle;
- padding: 0;
- }
-
- #userinfo a {
- color: black;
- text-decoration: none;
- }
-
- #userinfo a:hover {
- text-decoration: underline;
- }
-
- #userinfo b a {
- font-weight: normal;
- font-size: 0.9em;
- font-weight: bold;
- }
-
- #cat-selector ul {
- width: 100%;
- }
-
- #cat-selector ul li {
- display: inline;
- /*
- width: 12em;
- height: 1em;
- float: left;
- */
- }
-
- /* Alerts, Toolbox, etc. */
-
- .alertbar {
- background-color: #fff9c7;
- text-align: center;
- color: black;
- font-weight: bold;
- /* font-size: 0.95em; */
- width: 320px;
- margin: 2em auto;
- padding: 1em;
- /* padding: 10px; */
- }
-
- .alertbar.warning {
- background-color: #ffe68a;
- }
-
- .alertbar.error {
- background-color: #ff8a8a;
- }
-
- .alertbar a {
- color: black;
- text-decoration: none;
- }
-
- .alertbar.modbar a {
- margin: 0 0.5em;
- /* margin: 0px 5px; */
- }
-
- .alertbar a:hover {
- color: black;
- text-decoration: underline;
- }
-
- /*
- * IE doesn't appear to like a simple display:none in our header.
- * Random things start fucking up pretty badly.
- */
-
- .hidden {
- position: absolute;
- left: -10000px;
- }
-
- input.hidden {
- position: absolute;
- display: none;
- }
-
- /*
- * Flexbox Layout
- */
-
- .main_column {
- width: 590px;
- }
-
- .main_column table {
- margin-bottom: 1em;
- /* margin-bottom: 10px; */
- }
-
- /*
- .main_column {
- display: flex;
- flex-direction: column;
- align-items: stretch;
- max-width: 85%;
- }
-
- .main_column table {
- display: flex;
- flex-direction: column;
- align-items: stretch;
- margin-bottom: 1em;
- /* margin-bottom: 10px; *
- }
- */
-
- .box {
- /* font-size: 8pt; */
- background-color: white;
- border: none;
- margin-bottom: 1em;
- /*
- border: 1px solid #666666;
- margin-bottom: 10px;
- */
- }
-
- .sidebar {
- float: right;
- width: 250px;
- }
-
- /*
- .sidebar {
- display: flex;
- flex-direction: column;
- float: right;
- width: 250px;
- }
- */
-
- /*
- * Generic Layout
- */
-
- .thin {
- width: 850px;
- margin: 0px auto;
- }
-
- #userinfo_major .brackets:before {
- font-weight: bold;
- }
-
- #userinfo_major .brackets:after {
- font-weight: bold;
- }
-
- #userinfo_minor {
- position: absolute;
- text-align: left;
- }
-
- #userinfo_minor > li > ul {
- display: none;
- position: absolute;
- padding: 5px;
- left: -5px;
- background-color: #fff9c7;
- z-index: 100;
- }
-
- #userinfo #userinfo_minor li {
- display: block;
- }
-
- div.linkbox {
- text-align: center;
- padding: 0.5em;
- /* padding: 5px; */
- }
-
- .center {
- text-align: center;
- }
-
- .right {
- text-align: right;
- }
-
- .pad {
- padding: 1em;
- }
-
- .donation_info ul {
- margin-left: 1em;
- }
-
- .slight_margin {
- margin: 0.5em;
- /* margin: 4px; */
- }
-
- .vertical_space {
- margin-bottom: 1em;
- /* margin-bottom: 10px; */
- }
-
- .torrents_nomatch {
- margin-top: 1em;
- /* margin-top: 10px; */
- }
-
- .pad h3,
- .pad h4,
- .padbox h3,
- .padbox h4 {
- margin-top: 0px;
- padding-top: 0px;
- }
-
- .head {
- background: #9fedd7;
- color: black;
- padding: 0.5em 1em;
- /*
- padding: 4px;
- border-bottom: 1px solid #666;
- background: #E1E1E1;
- */
- }
-
- .body {
- padding: 3px 10px 10px 10px;
- }
-
- .tags {
- /* padding: 0 0 0 2em; */
- font-style: italic;
- }
-
- .tags a,
- a.search_link {
- color: black;
- font-weight: normal;
- }
-
- .tags a:hover,
- a:hover.search_link {
- color: black;
- text-decoration: underline;
- }
-
- ul.nobullet,
- ul.nobullet li {
- list-style-type: none;
- }
-
- table {
- width: 100%;
- border-collapse: collapse;
- /* border: 1px solid #666666; */
- }
-
- tr {
- background-color: white;
- }
-
- td,
- th {
- /* border: 1px solid #666666; */
- padding: 0.5em;
- /* padding: 5px; */
- text-align: left;
- }
-
- .colhead {
- background: #9fedd7;
- font-weight: bold;
- color: black;
- }
-
- td.colhead,
- .colhead td,
- .colhead th {
- padding-left: 10px;
- padding-right: 10px;
- }
-
- .colhead .sign,
- .colhead_dark .sign {
- padding: 0 1em;
- /* padding: 0px 8px 0px 8px; */
- vertical-align: middle;
- text-align: center;
- /* font-size: 12pt; */
- font-weight: bold;
- }
-
- .colhead .sign {
- padding: 0 1em;
- /*
- padding: 0px 8px 0px 8px;
- font-size: 12pt;
- */
- font-weight: bold;
- }
-
- .colhead_dark {
- background: #9fedd7;
- color: black;
- }
-
- .forum_post .colhead_dark {
- background: #9fedd7;
- }
-
- .forum_post.staff_post .colhead_dark {
- background: #fbe180;
- }
-
- .forum_post.sticky_post {
- border: 2px solid #fbe180;
- }
-
- td.label {
- font-weight: bold;
- text-align: right;
- width: 180px;
- }
-
- table.slice {
- margin-top: -1px;
- }
-
- .error_message {
- padding: 1em;
- /* padding: 10px; */
- background-color: #ff8a8a;
- text-align: center;
- color: white;
- font-weight: bold;
- box-shadow: 2px 2px 10px -5px slategray;
- }
-
- .save_message {
- padding: 1em;
- /* padding: 10px; */
- width: 50%;
- margin: 2em auto;
- background: #fbe180;
- text-align: center;
- color: black;
- font-weight: bold;
- box-shadow: 2px 2px 10px -5px slategray;
- }
-
- .elem_error {
- border: 2px solid red;
- }
-
- .hidden {
- display: none;
- }
-
- ul.nobullet {
- display: inline-block;
- }
-
- /* Layout (home page) */
-
- ul.stats li {
- padding: 0 0 1px 0;
- }
-
- ul.poll li {
- padding: 0 0 0 10px;
- margin: 0;
- clear: left;
- }
-
- ul.poll li.graph {
- margin-bottom: 3px;
- padding-left: 20px;
- }
-
- /* Layout (torrents page) */
-
- .show_torrents {
- width: 21px;
- height: 28px;
- background: url("images/show2.png") no-repeat center center;
- }
-
- .hide_torrents {
- width: 21px;
- height: 28px;
- background: url("images/hide2.png") no-repeat center center;
- }
-
- .show_torrents_link {
- border: none;
- width: 28px;
- height: 28px;
- display: block;
- cursor: pointer;
- }
-
- .filter_torrents {
- background: white;
- margin: auto;
- width: 765px;
- /* width: 750px; */
- }
-
- .filter_torrents .submit {
- text-align: right;
- padding-top: 5px;
- }
-
- #content form.search_form + .torrent_table {
- margin-top: 20px;
- }
-
- #content form.search_form .submit {
- text-align: center;
- }
-
- .cat_list tr td {
- border: none;
- }
-
- .torrent_title {
- font-size: larger;
- }
-
- .torrent_table tr {
- /* vertical-align: top; */
- vertical-align: middle;
- }
-
- /*
- .torrent_table .number_column {
- text-align: center;
- }
- */
-
- .torrent_table,
- .torrent_table td {
- border: none;
- }
-
- /*
- .torrent_table tr.torrent,
- .torrent_table tr.group {
- font-weight: bold;
- }
- */
-
- .torrent_table tr.group {
- background-color: white;
- }
-
- .torrent_table tr.group_torrent {
- background-color: white;
- }
-
- .torrent_table tr.torrent {
- background-color: white;
- }
-
- .torrent_table tr.group td.center:first-child {
- padding: 3px;
- width: 21px;
- }
-
- .torrent_table tr.torrent:nth-child(2n),
- .collage_table tr.row:nth-child(2n) {
- background-color: whitesmoke;
- }
-
- .torrent_table tr.torrent:nth-child(2n-1),
- .collage_table tr.row:nth-child(2n-1) {
- background-color: white;
- }
-
- .torrent_table tr.group {
- background-color: white;
- }
-
- .torrent_table div.tags {
- font-weight: normal;
- max-width: 500px;
- }
-
- .torrent_table tr .center,
- #collage_table td {
- vertical-align: middle;
- /* text-align: center; */
- }
-
- /*
- #collage_name,
- #request_name {
- font-weight: bold;
- }
- */
-
- .group_torrent span {
- float: right;
- }
-
- .torrent span {
- font-weight: normal;
- float: right;
- }
-
- .nobr {
- white-space: nowrap;
- }
-
- /* Layout (forums) */
-
- /*
- .last_read { margin-left: 5px; fill: #A9A9A9; }
- .colhead_dark .last_read { fill: #DC86E0; }
- */
-
- .unread_locked_sticky {
- background: url(images/locked_sticky_unread.png) no-repeat center center;
- }
-
- .read_locked_sticky {
- background: url(images/locked_sticky_read.png) no-repeat center center;
- }
-
- .read_sticky {
- background: url(images/sticky_read.png) no-repeat center center;
- }
-
- .unread_sticky {
- background: url(images/sticky_unread.png) no-repeat center center;
- }
-
- .unread_locked {
- background: url(images/locked_unread.png) no-repeat center center;
- }
-
- .read_locked {
- background: url(images/locked_read.png) no-repeat center center;
- }
-
- .unread {
- background: url(images/unread.png) no-repeat center center;
- }
-
- .read {
- background: url(images/read.png) no-repeat center center;
- }
-
- strong.quoteheader {
- color: black;
- }
-
- tr.row:nth-of-type(odd) {
- background-color: white;
- }
-
- table.forum_post {
- margin: 2em 0;
- /* margin: 10px 0px; */
- width: 100%;
- }
-
- table.forum_post td {
- /* border: 1px solid #666; */
- border: none;
- }
-
- table.forum_unread {
- border: 2px solid red;
- }
-
- td.avatar,
- #torrent_comments table.forum_post td.avatar {
- width: 120px;
- padding: 0px;
- }
-
- .box_description > div:not(.head) {
- max-height: 400px;
- overflow-y: scroll;
- }
-
- .box_description,
- table.forum_post td.body {
- word-break: break-word;
- word-wrap: break-word;
- display: inline-block;
- }
-
- .box_description {
- width: 100%;
- }
-
- .thin > table.forum_post td.body {
- width: 690px;
- }
-
- #torrent_comments table.forum_post td.body {
- width: 422px;
- }
-
- /*
- .thin > table.forum_post td.body {
- min-width: 600px;
- /* width: 690px; *
- }
-
- #torrent_comments table.forum_post td.avatar {
- max-width: 120px;
- padding: 0px;
- }
-
- #torrent_comments table.forum_post td.body {
- width: 600px;
- /* width: 422px; *
- }
- */
-
- blockquote {
- margin: 0.5em 2em;
- padding: 1em;
- border: 1px solid #bbb;
- /*
- margin: 10px;
- padding: 10px;
- border: 1px dashed #666;
- */
- }
-
- /*
- * Inbox Layout
- */
-
- tr.unreadpm {
- background-color: #fff9c7;
- }
-
- /* Layout (permission page) */
-
- .permission_head {
- width: 50%;
- margin: 1em auto;
- }
-
- .permissions {
- width: 90%;
- margin: 1em auto;
- }
-
- .permission_container {
- margin: auto;
- float: left;
- width: 30%;
- padding: 1em;
- }
-
- .permission_container input {
- margin: 0px 3px 5px 0px;
- vertical-align: top;
- }
-
- .submit_container {
- clear: both;
- text-align: right;
- }
-
- /* Layout (invite tree) */
-
- ul .invitetree {
- margin: 0px 0px 0px 25px;
- }
-
- .invitetree li {
- list-style: none;
- margin: 10px 2px;
- }
-
- /* Layout (user options) */
-
- .user_options .options_list li {
- margin: 0;
- }
-
- /* Layout (misc) */
-
- .left_poll {
- display: none;
- width: 2px;
- height: 9px;
- float: left;
- margin: 0px;
- padding: 0px;
- }
-
- .center_poll {
- height: 9px;
- background: white;
- border-radius: 4px;
- float: left;
- margin: 0px;
- padding: 0px;
- }
-
- .right_poll {
- display: none;
- width: 2px;
- height: 9px;
- float: left;
- margin: 0px;
- padding: 0px;
- }
-
- .curtain {
- position: fixed;
- top: 0%;
- left: 0%;
- width: 100%;
- height: 100%;
- background: black;
- z-index: 1001;
- -moz-opacity: 0.8;
- opacity: 0.8;
- filter: alpha(opacity=80);
- }
-
- .lightbox {
- position: fixed;
- text-align: center;
- top: 5%;
- left: 5%;
- width: 90%;
- height: 90%;
- padding: 0px;
- z-index: 1002;
- overflow: auto;
- }
-
- .lightbox img {
- background: white;
- }
-
- .center {
- text-align: center;
- }
-
- tr.torrent .bookmark > a:before {
- color: black;
- }
-
- tr.torrent .bookmark > a:after {
- color: black;
- }
-
- .field_div {
- margin-bottom: 10px;
- }
-
- .brackets {
- font-weight: normal;
- }
-
- .post_id {
- font-weight: normal;
- }
-
- /* Get rid of extraneous padding in the Top Contributors box */
-
- #request_top_contrib {
- border: none;
- }
-
- #request_top_contrib tr:first-child th {
- border-top: 0;
- }
-
- #request_top_contrib tr:last-child td {
- border-bottom: 0;
- }
-
- #request_top_contrib tr td:first-child,
- #request_top_contrib tr th:first-child,
- #request_top_contrib tr td:nth-child(2),
- #request_top_contrib tr th:nth-child(2) {
- border-left: 0;
- border-top: 0;
- }
-
- #request_top_contrib tr td:last-child,
- #request_top_contrib tr th:last-child {
- border-right: 0;
- }
-
- #request_table {
- margin-bottom: 0.5em;
- /* margin-bottom: 5px; */
- }
-
- #request_table .request:nth-of-type(odd) {
- background: whitesmoke;
- }
-
- #request_table .request:nth-of-type(even) {
- background: white;
- }
-
- ol {
- margin-left: 1em;
- }
-
- #forum_search_cat_list {
- border: none;
- }
-
- #coverCont {
- background-color: #fff9c7;
- padding: 5px;
- box-shadow: 2px 2px 10px -2px slategray;
- }
-
- #coverCont img {
- background-color: #fff9c7;
- }
-
- .torrent_info {
- font-size: 100%;
- font-weight: 100;
- }
-
- .recent_snatches_images,
- .recent_uploads_images {
- position: relative;
- }
-
- .edit_tags_votes {
- padding-left: 5px;
- }
-
- .row_hl {
- background-color: #edeae5;
- }
-
- input.inputtext {
- border: none;
- border-bottom: 1px solid #edeae5;
- background-color: white;
- font-size: 13px;
- outline: none;
- transition: ease-in-out 0.12s;
- }
-
- input.inputtext:focus {
- border-bottom: 1px solid #fbe180;
- }
-
- .bbcode_bar {
- background: white;
- border: 1px solid #c7c7c7;
- border-bottom: none;
- }
-
- .bbcode_bar .emoji_box {
- background-color: white;
- }
-
- .collage_images .collage_image {
- margin: 1px;
- width: 120px;
- /* width: 121px; */
- display: inline-block;
- }
-
- .box,
- .border,
- .alertbar,
- .artist_table,
- .request_table,
- .forum_index,
- #userinfo_minor > li > ul,
- .permissions table {
- box-shadow: 2px 2px 10px -2px slategray;
- /* margin: 1em auto; */
- }
-
- /*
- .last_edited {
- font-size: 10px;
- opacity: 0.7;
- }
- */
-
- #comm_badge_tr .badge_icon,
- #user_badge_edit_tr .badge_icon {
- margin-right: 1em;
- margin-left: 2px;
- }
-
- .store_table .badge_icon {
- display: inline-block;
- width: 4em;
- /* width: 16px; */
- }
-
- .store_table .badge_icon img {
- display: block;
- margin-left: auto;
- margin-right: auto;
- }
-
- .hnr-yes {
- color: red;
- }
-
- .hnr-no {
- color: green;
- }
-
- .webm {
- max-width: 100%;
- }
-
- .point_gift_box p {
- margin: 7px 2px 0px;
- }
-
- .point_gift_box input[type="text"],
- .point_gift_box textarea {
- width: 100%;
- box-sizing: border-box;
- }
-
- .dead {
- opacity: 0.5;
- }
-
- /*
- .search_warning {
- fill: #E197E5;
- }
- */
-
- caption {
- border-bottom: 1px solid #edeae5;
- font-weight: bold;
- }
-
- /* Torrent labels for the Format class */
-
- .tl_free {
- color: green;
- }
-
- .tl_reported {
- color: red;
- }
-
- .tl_approved {
- color: green;
- }
-
- .tl_seeding {
- color: green;
- }
-
- .tl_leeching {
- color: orange;
- }
-
- .tl_notice {
- color: black;
- }
-
- .tl_snatched {
- color: black;
- }
-
- /*
- .tag_parody {
- color: #e08e00 !important;
- }
- .tag_character {
- color: #099809 !important;
- }
- .tag_female {
- color: #d51b8a !important;
- }
- .tag_male {
- color: #0000ff !important;
- }
- */
|