123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- /**
- * Fixes needed to use skeleton.css
- * to its best no-fuss advantage
- */
-
- /* Set heading fonts 50% of default and bump down a level */
- @mixin heading-attributes {
- letter-spacing: -1px !important;
- margin: 1rem 0 !important;
- }
-
- h1:not(#logo) {
- font-size: 1.8rem !important;
- @include heading-attributes;
- }
-
- h2 {
- font-size: 1.5rem !important;
- @include heading-attributes;
- }
-
- h3 {
- font-size: 1.2rem !important;
- @include heading-attributes;
- }
-
- h4 {
- font-size: 0.9rem !important;
- @include heading-attributes;
- }
-
- h5 {
- font-size: 0.75rem !important;
- @include heading-attributes;
- }
-
- h6 {
- font-size: 0.75rem !important;
- @include heading-attributes;
- }
-
- /* Larger than phablet */
- @media (min-width: 550px) {
- h1 {
- font-size: 1.8rem !important;
- }
-
- h2 {
- font-size: 1.5rem !important;
- }
-
- h3 {
- font-size: 1.2rem !important;
- }
-
- h4 {
- font-size: 0.9rem !important;
- }
-
- h5 {
- font-size: 0.75rem !important;
- }
-
- h6 {
- font-size: 0.75rem !important;
- }
- }
-
- /* Forum list headings */
- table.forum_index {
- h4 {
- margin: 0 !important;
- }
- }
-
- /* Checkbox and radio labels */
- label,
- legend {
- display: inline !important;
- }
-
- /* Tables usually containing forms */
- /* browse */
- table.torrent_search,
- /* request search */ table.torrent_requests,
- /* forum list */ table.forum_index,
- /* upload form */ table.torrent_form,
- /* new request? */ table.request_form,
- /* forum thread */ table.new_thread,
- /* toolbox */ table.admin_tools,
- /* BP */ table.store_table,
- /* rule sections */ div.rule_table,
- /* client rules */ table.clients_table,
- /* login */ table.login_form,
- /* requests? */form.create_form,
- /* top10 */ form.search_form,
- /* start user management */
- table#user_info_box,
- table#warn_user_box,
- table#user_lock_account,
- table#user_privs_box,
- table#session_box,
- table#donation_box,
- table#donor_points_box,
- table#submit_box
- /* end user management */ {
- th,
- td {
- border-bottom: 0 !important;
- padding: 0.25rem !important;
- }
- }
-
- /* Duplicate input rules here */
- input,
- input[type="search"],
- input[type="text"] {
- margin: 0 !important;
- }
-
- input,
- textarea,
- select,
- fieldset {
- margin-bottom: 0 !important;
- }
-
- /* Block elements */
- pre,
- blockquote,
- dl,
- figure,
- table,
- ul,
- ol,
- form {
- margin-bottom: 0 !important;
- }
-
- /* Inline code */
- code {
- padding: 0 !important;
- }
-
- /* Unordered lists */
- ul {
- list-style: circle outside !important;
- }
-
- /* Nested lists */
- ul ul,
- ul ol,
- ol ol,
- ol ul {
- margin: 0 !important;
- font-size: 100% !important;
- }
|