123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /**
- * Fixes needed to use skeleton.css
- * to its best 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;
- }
- }
-
- table.forum_index {
- h4 {
- margin: 0 !important;
- }
- }
-
- label,
- legend {
- display: inline !important;
- }
-
- table.torrent_search,
- table.torrent_requests {
- th,
- td {
- border-bottom: 0 !important;
- padding: 0.25rem !important;
- }
- }
-
- input,
- input[type="search"],
- input[type="text"] {
- margin: 0 !important;
- }
-
- ul {
- list-style: circle !important;
- }
-
- pre,
- blockquote,
- dl,
- figure,
- table,
- p,
- ul,
- ol,
- form {
- margin-bottom: 0 !important;
- }
-
- code {
- padding: 0 !important;
- }
|