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.6KB

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