Oppaitime'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.4KB

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