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.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. html {
  2. font-size: 16px;
  3. line-height: 1.6;
  4. /* line-height: 1.6; */
  5. }
  6. /*
  7. * 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. /* Good/bad examples on rules pages */
  47. .important_text {
  48. color: red;
  49. }
  50. .important_text_alt {
  51. color: green;
  52. }
  53. .important_text_semi {
  54. color: orange;
  55. }
  56. .invalid,
  57. .warning,
  58. .error,
  59. .new {
  60. color: red;
  61. }
  62. /* Autocomplete */
  63. .autocomplete-suggestions {
  64. color: #000;
  65. margin-top: 5px;
  66. border: 1px solid #999;
  67. background: #fff;
  68. overflow: auto;
  69. strong {
  70. font-weight: normal;
  71. color: #3399ff;
  72. }
  73. }
  74. .autocomplete-suggestion {
  75. padding: 2px 5px;
  76. white-space: nowrap;
  77. overflow: hidden;
  78. cursor: pointer;
  79. }
  80. .autocomplete-selected {
  81. background: #f0f0f0;
  82. }
  83. /**
  84. * Ordered lists
  85. * https://stackoverflow.com/a/2730079
  86. */
  87. /* No IE6/7 */
  88. html>/**/body ol {
  89. list-style-type: none;
  90. counter-reset: level1;
  91. }
  92. ol li:before {
  93. content: counter(level1) ". ";
  94. counter-increment: level1;
  95. }
  96. ol li ol {
  97. list-style-type: none;
  98. counter-reset: level2;
  99. }
  100. ol li ol li:before {
  101. content: counter(level1) "." counter(level2) " ";
  102. counter-increment: level2;
  103. }
  104. /* For IE6/7 */
  105. ol li span {
  106. margin: 0 5px 0 -25px;
  107. }
  108. /* Disclaimer */
  109. #disclaimer {
  110. max-width: 50%;
  111. margin: auto;
  112. text-align: center;
  113. }