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

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