ui.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. .stroke{
  2. text-decoration: line-through;
  3. }
  4. .underline{
  5. text-decoration: underline;
  6. }
  7. .bold{
  8. font-weight: bold;
  9. }
  10. .italic{
  11. font-style: italic;
  12. }
  13. input[type="text"], input[type="number"], input[type="date"], input[type="password"]{
  14. border-radius: 0.5em;
  15. height: 2em;
  16. border: 0.4em solid #9cd3d9;
  17. color: #cccccc;
  18. background-color: #223344;
  19. }
  20. input[type="button"], input[type="submit"], select{
  21. border-radius: 0.5em;
  22. height: 2.5em;
  23. border: 0.4em solid #9cd3d9;
  24. font-weight: bold;
  25. color: #ffffff;
  26. background-color: #335577;
  27. cursor: pointer;
  28. }
  29. textarea{
  30. border-radius: 0.5em;
  31. min-height: 2em;
  32. max-height: 15em;
  33. border: 0.4em solid #9cd3d9;
  34. color: #bbbbbb;
  35. background-color: #223344;
  36. resize: vertical;
  37. }
  38. /* Links */
  39. a{
  40. color: #4c9ed9;
  41. text-decoration: none;
  42. transition: all .2s ease-in-out;
  43. }
  44. a:hover{
  45. color: #347;
  46. text-shadow: 0 0 0.4em #265885;
  47. text-decoration: underline;
  48. }
  49. /* Icon for slider sections */
  50. img.slid{
  51. height: 0.9em;
  52. width: 0.9em;
  53. padding: 0.1em;
  54. cursor: pointer;
  55. vertical-align: middle;
  56. transition: opacity 0.5s ease-in-out;
  57. }
  58. /* Elements that should have the cursor as pointer */
  59. .pointer{
  60. cursor: pointer;
  61. }
  62. /* Body */
  63. body{
  64. font-family: font;
  65. margin: 0;
  66. /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b5d3e5+0,e5f4ff+10,e5f4ff+90,b5d3e5+100 */
  67. background: #b5d3e5; /* Old browsers */
  68. background: -moz-linear-gradient(left, #b5d3e5 0%, #e5f4ff 10%, #e5f4ff 90%, #b5d3e5 100%); /* FF3.6-15 */
  69. background: -webkit-linear-gradient(left, #b5d3e5 0%,#e5f4ff 10%,#e5f4ff 90%,#b5d3e5 100%); /* Chrome10-25,Safari5.1-6 */
  70. background: linear-gradient(to right, #b5d3e5 0%,#e5f4ff 10%,#e5f4ff 90%,#b5d3e5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  71. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b5d3e5', endColorstr='#b5d3e5',GradientType=1 ); /* IE6-9 */
  72. }
  73. /* Content */
  74. div#content{
  75. margin: 3em auto auto auto;
  76. width: 90%;
  77. max-width: 80em;
  78. }
  79. /* Sections */
  80. div.section{
  81. background-color: #9bc1da;
  82. padding: 0.1em 0.3em 0.1em 0.1em;
  83. border: 0.2em solid #9cd3d9;
  84. }
  85. /* Title for each section */
  86. div.section .section_title{
  87. font-size: 130%;
  88. font-style: bold;
  89. margin-top: 0.5em;
  90. }
  91. /* Entries */
  92. div.entry{
  93. background-color: #ffffff;
  94. padding: 0.2em;
  95. margin: 0.4em;
  96. border: 0.2em solid #9cd3d9;
  97. box-shadow: inset 0 0 0.2em #dde;
  98. transition: all .3s ease-in-out;
  99. }
  100. td.entry{
  101. background-color: #ffffff;
  102. padding: 0.2em;
  103. margin: 0.4em;
  104. border: 0.2em solid #9cd3d9;
  105. box-shadow: inset 0 0 0.2em #dde;
  106. transition: all .3s ease-in-out;
  107. }
  108. div#member_action input{
  109. margin: 0.5em 2em 0.5em 2em;
  110. }
  111. /* Toolbar styles */
  112. div#toolbar{
  113. background-color: #000000;
  114. margin: 0;
  115. width: 100%;
  116. height: 2em;
  117. padding: 0;
  118. }
  119. div#toolbar img{
  120. height: 1.6em;
  121. vertical-align: center;
  122. }
  123. div#toolbar table{
  124. width: 90%;
  125. height: 100%;
  126. margin-left: auto;
  127. margin-right: auto;
  128. border-spacing: 0;
  129. border-collapse: collapse;
  130. margin: 0;
  131. table-layout: fixed;
  132. }
  133. div#toolbar td{
  134. color: #dddddd;
  135. font-weight: bold;
  136. text-align: center;
  137. }
  138. div#toolbar td a{
  139. color: #dddddd;
  140. font-weight: bold;
  141. text-align: center;
  142. text-shadow: none;
  143. text-decoration: none;
  144. transition: all .3s ease-in-out;
  145. }
  146. div.secondary_toolbar{
  147. background-color: #333333;
  148. margin: 0;
  149. display: none;
  150. width: 100%;
  151. height: 2em;
  152. }
  153. div.secondary_toolbar table{
  154. width: 90%;
  155. margin-left: auto;
  156. margin-right: auto;
  157. table-layout: fixed;
  158. }
  159. div.secondary_toolbar td{
  160. text-align: center;
  161. }
  162. div.secondary_toolbar td a{
  163. color: #dddddd;
  164. font-weight: bold;
  165. text-align: center;
  166. text-shadow: none;
  167. text-decoration: none;
  168. transition: all .3s ease-in-out;
  169. }
  170. div.secondary_toolbar td a:hover{
  171. color: #dddddd;
  172. text-shadow: none;
  173. text-decoration: none;
  174. }
  175. table.translation_table{
  176. border-collapse: collapse;
  177. }
  178. table.translation_table th{
  179. font-weight: bold;
  180. font-size: 1.1em;
  181. border: 1px solid #000000;
  182. }
  183. table.translation_table td{
  184. border: 1px solid #000000;
  185. }