123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- html {
- font-size: 16px;
- line-height: 1.6;
- }
-
- /*
- * Spacing classes
- */
-
- .center {
- text-align: center;
- }
-
- .right {
- text-align: right;
- }
-
- .nobr {
- white-space: nowrap;
- }
-
- /* Brackets [Bookmark] */
- .brackets {
- text-indent: 0px;
- white-space: nowrap;
- cursor: pointer;
- }
-
- .brackets:before {
- content: "[";
- }
-
- .brackets:after {
- content: "]";
- }
-
- /* GPG keys */
- #publickey {
- font-family: monospace;
- width: initial;
- }
-
- /* <pre> spacing fix */
- /*
- code,
- pre {
- white-space: pre;
- }
- */
-
- pre br,
- code br {
- display: none;
- }
-
- /*
- * Torrent form
- */
-
- .torrent_form {
- label {
- font-weight: bold;
- }
-
- .required {
- &:after {
- color: red;
- content: "*";
- }
- }
- }
-
- /* Good/bad examples on rules pages */
- .important_text {
- color: red;
- }
-
- .important_text_alt {
- color: green;
- }
-
- .important_text_semi {
- color: orange;
- }
-
- .invalid,
- .warning,
- .error,
- .new {
- color: red;
- }
-
- /* Autocomplete */
- .autocomplete-suggestions {
- color: #000;
- margin-top: 5px;
- border: 1px solid #999;
- background: #fff;
- overflow: auto;
-
- strong {
- font-weight: normal;
- color: #3399ff;
- }
- }
-
- .autocomplete-suggestion {
- padding: 2px 5px;
- white-space: nowrap;
- overflow: hidden;
- cursor: pointer;
- }
-
- .autocomplete-selected {
- background: #f0f0f0;
- }
-
- /**
- * Ordered lists
- * https://stackoverflow.com/a/2730079
- */
-
- /* No IE6/7 */
- html>/**/body ol {
- list-style-type: none;
- counter-reset: level1;
- }
-
- ol li:before {
- content: counter(level1) ". ";
- counter-increment: level1;
- }
-
- ol li ol {
- list-style-type: none;
- counter-reset: level2;
- }
-
- ol li ol li:before {
- content: counter(level1) "." counter(level2) " ";
- counter-increment: level2;
- }
-
- /* For IE6/7 */
- ol li span {
- margin: 0 5px 0 -25px;
- }
-
- /* Disclaimer */
- .halfwide {
- max-width: 50%;
- margin: auto;
- text-align: center;
- }
|