default.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /*
  2. This file could be used under both CC-BY-SA 4.0 or at your chosing GNU GPLv3 or any later version
  3. */
  4. html {}
  5. * {
  6. background-color: #311a46;
  7. font-size: 20px;
  8. list-style-type: none;
  9. }
  10. body{
  11. color: #95bcf2;
  12. font-family:Open Sans;
  13. font-weight: bold;
  14. margin-top: 5%;
  15. margin-bottom: 5%;
  16. margin-right: 20%;
  17. margin-left: 20%;
  18. }
  19. @font-face {
  20. font-family: "Open-Sans-Extrabold" Open Sans;
  21. /*src: url(/font);*/
  22. }
  23. pre {
  24. /*background: #a89984;*/
  25. border: 10px solid #928374;
  26. border-radius: 10px;
  27. padding: 1em;
  28. margin: 1em;
  29. white-space: pre-wrap;
  30. }
  31. h1 {
  32. font-size: 30px;
  33. color: #CC35F0;
  34. }
  35. h2 {
  36. font-size: 25px;
  37. color: #FFFFFF;
  38. }
  39. h3 {
  40. font-size: 22px;
  41. color: #3798DD;
  42. }
  43. code {
  44. background-color: #000000;
  45. /*border: 5px solid #928374;*/
  46. border-radius: 5px;
  47. word-wrap: break-word;
  48. overflow-wrap: break-word;
  49. }
  50. ul li {
  51. list-style: inside circle;
  52. display:list-item;
  53. }
  54. table {
  55. border-collapse: collapse;
  56. border: 2px solid #7c6f64;
  57. }
  58. th,td {
  59. border: 2px solid #7c6f64;
  60. }
  61. a {
  62. color: #C648EA;
  63. text-decoration: none;
  64. }
  65. a:hover {
  66. color: #DB82F4;
  67. text-decoration: none;
  68. }
  69. img {
  70. max-width: 50%;
  71. height: auto;
  72. }
  73. input[type=text] {
  74. padding: 12px 20px;
  75. margin: 8px 0;
  76. box-sizing: border-box;
  77. border: 0px solid black;
  78. background-color: #b058c6;
  79. color: #311a46;
  80. font-weight: bold;
  81. }
  82. button {
  83. padding: 12px 20px;
  84. margin: 8px 0;
  85. box-sizing: border-box;
  86. border: 0px solid black;
  87. background-color: #b058c6;
  88. color: #311a46;
  89. font-weight: bold;
  90. }
  91. summary {
  92. color: #b058c6;
  93. font-weight: bold;
  94. }
  95. summary:hover, summary:hover > h1 {
  96. color: white;
  97. cursor: pointer;
  98. }
  99. button:hover, input:hover, button:focus, input:focus {
  100. background-color: #3798DD;
  101. color: white;
  102. }
  103. hr {
  104. border-top: 1px solid #b058c6;
  105. }
  106. p {
  107. margin-right: 5%;
  108. margin-left: 5%;
  109. }
  110. }