default.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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, .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. .button { line-height: 3 }
  92. summary {
  93. color: #b058c6;
  94. font-weight: bold;
  95. }
  96. summary:hover, summary:hover > h1 {
  97. color: white;
  98. cursor: pointer;
  99. }
  100. button:hover, input:hover, button:focus, input:focus, .button:hover, .button:focus {
  101. background-color: #3798DD;
  102. color: white;
  103. }
  104. hr {
  105. border-top: 1px solid #b058c6;
  106. }
  107. p {
  108. margin-right: 5%;
  109. margin-left: 5%;
  110. }
  111. .searchbar {
  112. width: 90%;
  113. height: 70;
  114. position: fixed;
  115. top: 0;
  116. margin-top: 1%;
  117. left: 5%;
  118. }
  119. .side_found { margin-top: 100}
  120. /*
  121. If a screen is at least 1024 pixels wide, we do some more things.
  122. */
  123. @media screen and (min-width: 1024px) {
  124. .recomendations {
  125. margin-left: 40%;}
  126. .searchbar {
  127. width: 35%;}
  128. .side_found {
  129. margin-top: 0;
  130. width: 35%;
  131. position: fixed;
  132. top:100;
  133. left:5%;} }
  134. /* prgoress bar theme */
  135. .back_progress {background-color: #543ba3;
  136. width: 100%;
  137. height: 7}
  138. .back_progress:hover {
  139. background-color: #CC35F0;
  140. }
  141. .front_progress {background-color: #96bbe8;
  142. height: 7}
  143. }