dashboard-common.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*******************************************************************************
  2. ηMatrix - a browser extension to black/white list requests.
  3. Copyright (C) 2019-2022 Alessio Vanni
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see {http://www.gnu.org/licenses/}.
  14. Home: https://gitlab.com/vannilla/ematrix
  15. uMatrix Home: https://github.com/gorhill/uMatrix
  16. */
  17. body {
  18. background-color: #fff;
  19. color: #000;
  20. margin: 0;
  21. padding: 0 0.5em 0 0.5em;
  22. font: 15px/1.4 sans-serif;
  23. }
  24. body > *:first-child {
  25. margin-top: 0;
  26. }
  27. h2, h3 {
  28. margin: 1em 0;
  29. font-family: sans-serif;
  30. }
  31. h2 {
  32. font-size: 18px;
  33. }
  34. h2:nth-of-type(1) {
  35. margin-top: 0;
  36. }
  37. h3 {
  38. font-size: 16px;
  39. }
  40. h2 + * {
  41. padding: 0;
  42. }
  43. html.ltr h2 + * {
  44. margin: 0 0 0 1em;
  45. }
  46. html.rtl h2 + * {
  47. margin: 0 1em 0 0;
  48. }
  49. a {
  50. text-decoration: none;
  51. }
  52. button {
  53. padding: 0.3em 0.5em;
  54. }
  55. input[disabled] + label {
  56. color: gray;
  57. }
  58. .para {
  59. width: 40em;
  60. }
  61. .whatisthis {
  62. margin: 0 0 0 8px;
  63. border: 0;
  64. font-family: FontAwesome;
  65. padding: 0 0 4px 0;
  66. cursor: pointer;
  67. opacity: 0.4;
  68. }
  69. .whatisthis:before {
  70. content: '\f059';
  71. }
  72. .whatisthis:hover {
  73. opacity: 1.0;
  74. }
  75. .whatisthis-expandable {
  76. background-color: #F8F8F8;
  77. border: 1px dotted #aaa;
  78. display: none;
  79. font-size: smaller;
  80. margin: 0.5em 0 1em 1.25em;
  81. padding: 0.5em;
  82. white-space: pre-line;
  83. }
  84. .whatisthis-expandable > p {
  85. margin-top: 1em;
  86. margin-bottom: 0;
  87. }
  88. .whatisthis-expandable > p:first-child {
  89. margin-top: 0;
  90. }
  91. .whatisthis-expandable.whatisthis-expanded {
  92. display: block;
  93. }
  94. .warn {
  95. margin: 0;
  96. padding: 5px;
  97. background-color: #FEDAE0;
  98. }