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

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