main.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. html {
  2. background: #eee;
  3. }
  4. body {
  5. font-family: 'SUIT', sans-serif;
  6. font-size: 14px;
  7. margin: 0;
  8. }
  9. h1, h2, h3, h4, h5, h6 {
  10. border-bottom: 1px solid gainsboro;
  11. padding-bottom: 10px;
  12. }
  13. select {
  14. font-family: 'SUIT', sans-serif;
  15. }
  16. textarea {
  17. font-family: 'SUIT', monospace;
  18. }
  19. h1.blank, h2.blank, h3.blank, h4.blank, h5.blank, h6.blank {
  20. border-bottom: none;
  21. padding-bottom: 0px;
  22. }
  23. header#main {
  24. border-bottom: 0;
  25. line-height: 50px;
  26. padding-left: 20px;
  27. padding-right: 20px;
  28. background-color: #99ddff;
  29. }
  30. header#main a {
  31. color: black;
  32. }
  33. header#main span#right {
  34. float: right;
  35. }
  36. header#main form.not_mobile input.search {
  37. display: inline-block;
  38. width: 200px;
  39. }
  40. header#main form.not_mobile {
  41. display: inline-block;
  42. }
  43. header a#logo {
  44. height: 52px;
  45. display: inline-block;
  46. padding-left: 20px;
  47. padding-right: 20px;
  48. margin-left: -20px;
  49. }
  50. header a#logo:hover {
  51. background-color: #95c3df;
  52. }
  53. .top_cel {
  54. display: inline-block;
  55. }
  56. .top_cel a {
  57. display: inline-block;
  58. height: 52px;
  59. padding-left: 10px;
  60. padding-right: 10px;
  61. }
  62. .top_cel a:hover {
  63. background-color: #95c3df;
  64. }
  65. .top_cel_in {
  66. position: absolute;
  67. background: #efd8f7;
  68. line-height: initial;
  69. z-index: 1;
  70. }
  71. .top_cel_in a {
  72. padding: 10px;
  73. display: block;
  74. height: inherit;
  75. padding-top: 10px;
  76. padding-bottom: 10px;
  77. }
  78. .top_cel_in a:hover {
  79. background-color: #e3baf1;
  80. }
  81. div#menu {
  82. margin-top: 10px;
  83. margin-left: 6px;
  84. }
  85. .menu_item_link {
  86. border: 0;
  87. background-color: white;
  88. padding: 10px;
  89. display: inline-block;
  90. margin-left: -6px;
  91. }
  92. .menu_item_link:hover {
  93. background-color: #eee;
  94. }
  95. input.search {
  96. height: 35px;
  97. vertical-align: middle;
  98. border: 0;
  99. padding: 10px;
  100. }
  101. input.only_mobile.search {
  102. width: calc(100% - 70px);
  103. display: inline-block;
  104. }
  105. input.search:focus-visible {
  106. outline: none;
  107. }
  108. button.search_button {
  109. width: 35px;
  110. height: 35px;
  111. vertical-align: middle;
  112. margin-left: -6px;
  113. border: 0;
  114. font-size: 20px;
  115. line-height: 0px;
  116. cursor: pointer;
  117. }
  118. button.search_button#goto {
  119. background-color: #ccffbb;
  120. }
  121. button.search_button#goto:hover {
  122. background-color: #99bf8c;
  123. }
  124. button.search_button#search {
  125. background-color: #ffeecc;
  126. }
  127. button.search_button#search:hover {
  128. background-color: #bcb097;
  129. }
  130. aside {
  131. width: 250px;
  132. float: left;
  133. display: block;
  134. padding-top: 10px;
  135. padding-left: 20px;
  136. padding-right: 20px;
  137. background-color: #ffeaee;
  138. min-height: calc(100vh - (50px + 20px));
  139. }
  140. aside button {
  141. width: 25%;
  142. }
  143. aside .side_button {
  144. border: 0;
  145. background-color: white;
  146. padding: 10px;
  147. }
  148. aside .side_button:hover {
  149. background-color: #eee;
  150. cursor: pointer;
  151. }
  152. #side_button_2 {
  153. border-left: 0;
  154. border-right: 0;
  155. }
  156. #side_button_3 {
  157. border-right: 0;
  158. }
  159. #side_content {
  160. margin-top: 20px;
  161. }
  162. section {
  163. width: calc(100% - (250px + 40px));
  164. display: inline-block;
  165. border-left: 0px solid;
  166. background-color: white;
  167. }
  168. header#section {
  169. padding-top: 11px;
  170. padding-bottom: 11px;
  171. border-bottom: 0px solid;
  172. background-color: #cceeff;
  173. }
  174. article.main {
  175. max-width: 1000px;
  176. padding-left: 20px;
  177. padding-right: 20px;
  178. margin: auto;
  179. }
  180. article.main#main_data {
  181. padding-top: 20px;
  182. min-height: 400px;
  183. }
  184. article.main#title h1 {
  185. margin: 0;
  186. }
  187. .only_mobile, header#main form.only_mobile {
  188. display: none;
  189. }
  190. @media screen and (max-width: 1000px) {
  191. aside {
  192. float: none;
  193. border-top: 0px solid;
  194. width: calc(100vw - 40px);
  195. height: 100%;
  196. padding: 20px;
  197. }
  198. section {
  199. width: 100vw;
  200. padding-bottom: 20px;
  201. border-left: 0;
  202. }
  203. .not_mobile, header#main form.not_mobile {
  204. display: none;
  205. }
  206. .only_mobile, header#main form.only_mobile {
  207. display: block;
  208. }
  209. .top_cel_in {
  210. left: 0;
  211. width: 100%;
  212. }
  213. }
  214. footer {
  215. border-top: 0px solid;
  216. margin-top: 20px;
  217. background: #eee;
  218. padding: 20px;
  219. }
  220. footer.only_mobile {
  221. margin-top: 0px;
  222. }
  223. #b_logo {
  224. width: 100px;
  225. }
  226. input, textarea, button, select {
  227. border: 1px solid #aaa;
  228. padding: 10px;
  229. background-color: white;
  230. }
  231. #main_data button:hover {
  232. background-color: #eee;
  233. cursor: pointer;
  234. }
  235. #opennamu_save_button {
  236. background: antiquewhite;
  237. }