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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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 {
  48. border-spacing: 1px;
  49. }
  50. #loginform #username {
  51. border-radius: 5px 5px 0 0;
  52. }
  53. #loginform 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 {
  62. background-color: #FFF7F7;
  63. }
  64. #head, #foot {
  65. height: 30px;
  66. width: 100%;
  67. background-color: #461640;
  68. overflow: hidden;
  69. }
  70. #head {
  71. text-align: right;
  72. }
  73. #foot {
  74. text-align: center;
  75. bottom: 0;
  76. position: absolute;
  77. }
  78. #foot > span, #head > span {
  79. line-height: 30px;
  80. margin: 10px;
  81. }
  82. #foot > span, #head > span {
  83. color: #a07c92;
  84. }
  85. #foot a, #head a {
  86. color: #b98fa9;
  87. }
  88. #content {
  89. height: calc(100% - 60px);
  90. overflow-y: scroll;
  91. box-sizing: border-box;
  92. background-repeat: no-repeat;
  93. background-size: contain;
  94. display: flex;
  95. align-items: center;
  96. }
  97. #maincontent {
  98. margin: auto 10% auto auto;
  99. background-color: transparent;
  100. }
  101. #logo {
  102. height: 100px;
  103. background-image: url('images/logo.svg');
  104. background-repeat: no-repeat;
  105. background-position: center;
  106. background-size: contain;
  107. }
  108. .centered {
  109. text-align: center;
  110. vertical-align: middle;
  111. }
  112. .hidden {
  113. display: none;
  114. }
  115. .info {
  116. color: green;
  117. font-weight: bold;
  118. }
  119. .warning {
  120. color: red;
  121. font-weight: bold;
  122. }