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

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