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.

matcha.css 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. @media all and (orientation: portrait) {
  2. #content {
  3. background: none !important;
  4. }
  5. }
  6. * {
  7. margin: 0;
  8. padding: 0;
  9. }
  10. html,
  11. body {
  12. height: 100%;
  13. }
  14. body {
  15. font-family: "Bitstream Vera Sans", Tahoma, sans-serif;
  16. font-size: 0.75em;
  17. color: black;
  18. background: #edeae5;
  19. /* background: url('/static/common/hiware.png'); */
  20. }
  21. a {
  22. color: #016670;
  23. text-decoration: none;
  24. }
  25. a:hover {
  26. color: black;
  27. text-decoration: underline;
  28. }
  29. p {
  30. margin: 1em 0;
  31. }
  32. input[type="text"],
  33. input[type="password"],
  34. input[type="email"] {
  35. color: black;
  36. background-color: white;
  37. padding: 0 0 0 6px;
  38. font: 500 14px/29px Helvetica, Arial, sans-serif;
  39. width: 100%;
  40. box-sizing: border-box;
  41. }
  42. input[type="text"]:valid,
  43. input[type="password"]:valid,
  44. input[type="email"] {
  45. border-style: none;
  46. }
  47. input[type="text"]:invalid,
  48. input[type="password"]:invalid {
  49. border: none;
  50. border-right: 2px solid red;
  51. }
  52. #loginform > table,
  53. #recoverform > div > table {
  54. border-spacing: 1px;
  55. }
  56. #loginform #username,
  57. #recoverform #new_pass_1 {
  58. border-radius: 5px 5px 0 0;
  59. }
  60. #loginform input[type="submit"],
  61. #recoverform input[type="submit"],
  62. input[type="submit"] {
  63. width: 100%;
  64. background-color: #fbe180;
  65. font: 500 14px/29px Helvetica, Arial, sans-serif;
  66. border: none;
  67. border-radius: 0 0 5px 5px;
  68. cursor: pointer;
  69. }
  70. #loginform input[type="submit"]:hover,
  71. #recoverform input[type="submit"]:hover,
  72. input[type="submit"]:hover {
  73. background-color: #fff9c7;
  74. }
  75. #recoverform .layout td:first-child {
  76. width: 100%;
  77. text-align: right;
  78. padding-right: 5px;
  79. }
  80. #head,
  81. #foot {
  82. height: 30px;
  83. width: 100%;
  84. background: #016670;
  85. overflow: hidden;
  86. }
  87. #head {
  88. text-align: right;
  89. }
  90. #foot {
  91. text-align: center;
  92. bottom: 0;
  93. position: absolute;
  94. }
  95. #foot > span,
  96. #head > span {
  97. line-height: 30px;
  98. margin: 1em;
  99. }
  100. #foot > span,
  101. #head > span {
  102. color: white;
  103. }
  104. #foot a,
  105. #head a {
  106. color: white;
  107. }
  108. #foot a:hover,
  109. #head a:hover {
  110. color: white;
  111. }
  112. #content {
  113. width: 250px;
  114. height: calc(80% - 60px);
  115. margin: 0 auto;
  116. padding: 10% 0;
  117. /*
  118. height: calc(100% - 60px);
  119. overflow-y: auto;
  120. box-sizing: border-box;
  121. background-repeat: no-repeat;
  122. background-size: contain;
  123. display: flex;
  124. align-items: center;
  125. padding: 0 25%;
  126. */
  127. }
  128. .tldr {
  129. width: 200%;
  130. height: 500px;
  131. margin-left: -50%;
  132. overflow-y: scroll;
  133. }
  134. ul {
  135. margin-left: 2em;
  136. }
  137. #logo {
  138. width: 250px;
  139. height: 50px;
  140. background-image: url("/static/common/logo-black.png");
  141. background-repeat: no-repeat;
  142. background-position: center;
  143. background-size: contain;
  144. margin: 1em 0;
  145. }
  146. .centered {
  147. /* text-align: center; */
  148. vertical-align: middle;
  149. }
  150. .hidden {
  151. display: none;
  152. }
  153. .info {
  154. color: green;
  155. font-weight: bold;
  156. }
  157. .warning {
  158. color: red;
  159. font-weight: bold;
  160. }
  161. .notice {
  162. width: 250px;
  163. }