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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. border-radius: 3px;
  37. }
  38. input[type="text"]:valid, input[type="password"]:valid, input[type="email"] {
  39. border-style: none;
  40. }
  41. input[type="text"]:invalid, input[type="password"]:invalid {
  42. border: none;
  43. border-right: 2px solid red;
  44. }
  45. input[type="submit"] {
  46. width: 100%;
  47. background-color: white;
  48. font: 500 14px/29px Helvetica, Arial, sans-serif;
  49. border: none;
  50. border-radius: 3px;
  51. cursor: pointer;
  52. }
  53. input[type="submit"]:hover {
  54. background-color: #FFF7F7;
  55. }
  56. #head, #foot {
  57. height: 30px;
  58. width: 100%;
  59. background-color: #461640;
  60. overflow: hidden;
  61. }
  62. #head {
  63. text-align: right;
  64. }
  65. #foot {
  66. text-align: center;
  67. bottom: 0;
  68. position: absolute;
  69. }
  70. #foot > span, #head > span {
  71. line-height: 30px;
  72. margin: 10px;
  73. }
  74. #foot > span, #head > span {
  75. color: #a07c92;
  76. }
  77. #foot a, #head a {
  78. color: #b98fa9;
  79. }
  80. #content {
  81. height: calc(100% - 60px);
  82. overflow-y: scroll;
  83. box-sizing: border-box;
  84. background-repeat: no-repeat;
  85. background-size: contain;
  86. display: flex;
  87. align-items: center;
  88. }
  89. #maincontent {
  90. margin: auto 10% auto auto;
  91. background-color: transparent;
  92. }
  93. #logo {
  94. height: 100px;
  95. background-image: url('images/logo.svg');
  96. background-repeat: no-repeat;
  97. background-position: center;
  98. background-size: contain;
  99. }
  100. .poetry {
  101. width: 320px;
  102. text-align: justify;
  103. }
  104. .hidden {
  105. display: none;
  106. }
  107. .info {
  108. color: green;
  109. font-weight: bold;
  110. }
  111. .warning {
  112. color: red;
  113. font-weight: bold;
  114. }