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

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