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.

style.css 2.7KB

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