123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- @mixin center-all {
- }
-
- table {
- width: 100%;
-
- th {
- font-size: 120%;
- }
-
- /*
- tr {
- background-color: white;
- }
- */
- }
-
- /**
- * Torrent form
- */
- .torrent_form,
- #dynamic_form {
- /* margin-bottom: 2rem; */
-
- label {
- float: right;
- }
-
- td {
- vertical-align: top;
- }
- }
-
- /**
- * colhead
- * The main table heading.
- */
- .colhead {
- padding: 0.5em 0;
- border-bottom: 1px solid #e1e1e1;
- font-size: 120%;
- font-weight: bold;
- }
-
- .colhead .sign,
- .colhead_dark .sign {
- padding: 0 1rem;
- vertical-align: middle;
- text-align: center;
- font-weight: bold;
- }
-
- .colhead .sign {
- padding: 0 1rem;
- font-weight: bold;
- }
-
- /* Torrent and collage tables */
- .torrent_table,
- .collage_table {
- tr:nth-child(2n) {
- background-color: whitesmoke;
- }
-
- tr:nth-child(2n-1) {
- background-color: white;
- }
-
- div.tags {
- font-weight: normal;
- max-width: 500px;
- }
-
- span {
- float: right;
- }
- }
-
- /*
- .torrent_table,
- .collage_table {
- tr.group {
- background-color: white;
-
- td.center:first-child {
- padding: 3px;
- width: 21px;
- }
- }
-
- tr.group_torrent {
- background-color: white;
-
- span {
- float: right;
- }
- }
-
- tr.torrent {
- background-color: white;
- }
-
- tr.torrent:nth-child(2n),
- tr.row:nth-child(2n) {
- background-color: whitesmoke;
- }
-
- tr.torrent:nth-child(2n-1),
- tr.row:nth-child(2n-1) {
- background-color: white;
- }
-
- tr .center,
- td {
- vertical-align: middle;
- /* text-align: center; * /
- }
- div.tags {
- font-weight: normal;
- max-width: 500px;
- }
- }
- */
-
- .torrent_table .group_torrent .torrent span {
- font-weight: normal;
- float: right;
- }
-
- /* Forums */
- .forum_post .colhead_dark {
- background: $lb100;
- }
-
- .forum_post.staff_post .colhead_dark {
- background: $lb200;
- }
-
- .forum_post.sticky_post {
- border: 2px solid $lb200;
- }
-
- td.label {
- font-weight: bold;
- text-align: right;
- width: 180px;
- }
-
- table.slice {
- margin-top: -1px;
- }
-
- /* Get rid of extraneous padding in the Top Contributors box */
- #request_top_contrib {
- border: none;
-
- tr:first-child th {
- border-top: 0;
- }
-
- tr:last-child td {
- border-bottom: 0;
- }
-
- tr td:first-child,
- tr th:first-child,
- tr td:nth-child(2),
- tr th:nth-child(2) {
- border-left: 0;
- border-top: 0;
- }
-
- tr td:last-child,
- tr th:last-child {
- border-right: 0;
- }
- }
-
- #request_table {
- margin-bottom: 0.5rem;
- }
|