BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fonts.scss 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. html {
  2. font-size: 16px;
  3. line-height: 1.6;
  4. /* line-height: 1.6; */
  5. }
  6. /*
  7. * Spacing classes
  8. */
  9. .center {
  10. text-align: center;
  11. }
  12. .right {
  13. text-align: right;
  14. }
  15. .nobr {
  16. white-space: nowrap;
  17. }
  18. /* Brackets [Bookmark] */
  19. .brackets {
  20. text-indent: 0px;
  21. white-space: nowrap;
  22. cursor: pointer;
  23. }
  24. .brackets:before {
  25. content: "[";
  26. }
  27. .brackets:after {
  28. content: "]";
  29. }
  30. /* GPG keys */
  31. #publickey {
  32. font-family: monospace;
  33. width: initial;
  34. }
  35. /* <pre> spacing fix */
  36. /*
  37. code,
  38. pre {
  39. white-space: pre;
  40. }
  41. */
  42. pre br,
  43. code br {
  44. display: none;
  45. }
  46. /*
  47. * Torrent form
  48. */
  49. .torrent_form {
  50. label {
  51. font-weight: bold;
  52. }
  53. .required {
  54. &:after {
  55. color: red;
  56. content: "*";
  57. }
  58. }
  59. }
  60. /* Good/bad examples on rules pages */
  61. .important_text {
  62. color: red;
  63. }
  64. .important_text_alt {
  65. color: green;
  66. }
  67. .important_text_semi {
  68. color: orange;
  69. }
  70. .invalid,
  71. .warning,
  72. .error,
  73. .new {
  74. color: red;
  75. }
  76. /* Autocomplete */
  77. .autocomplete-suggestions {
  78. color: #000;
  79. margin-top: 5px;
  80. border: 1px solid #999;
  81. background: #fff;
  82. overflow: auto;
  83. strong {
  84. font-weight: normal;
  85. color: #3399ff;
  86. }
  87. }
  88. .autocomplete-suggestion {
  89. padding: 2px 5px;
  90. white-space: nowrap;
  91. overflow: hidden;
  92. cursor: pointer;
  93. }
  94. .autocomplete-selected {
  95. background: #f0f0f0;
  96. }
  97. /**
  98. * Ordered lists
  99. * https://stackoverflow.com/a/2730079
  100. */
  101. /* No IE6/7 */
  102. html>/**/body ol {
  103. list-style-type: none;
  104. counter-reset: level1;
  105. }
  106. ol li:before {
  107. content: counter(level1) ". ";
  108. counter-increment: level1;
  109. }
  110. ol li ol {
  111. list-style-type: none;
  112. counter-reset: level2;
  113. }
  114. ol li ol li:before {
  115. content: counter(level1) "." counter(level2) " ";
  116. counter-increment: level2;
  117. }
  118. /* For IE6/7 */
  119. ol li span {
  120. margin: 0 5px 0 -25px;
  121. }
  122. /* Disclaimer */
  123. .halfwide {
  124. max-width: 50%;
  125. margin: auto;
  126. text-align: center;
  127. }