utility.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. @import "dijit.css";
  2. body {
  3. background : #f5f5f5;
  4. color : black;
  5. padding : 0px;
  6. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  7. font-size: 14px;
  8. margin-left : auto;
  9. margin-right : auto;
  10. max-width : 800px;
  11. }
  12. body.small_margins {
  13. margin : 1em;
  14. max-width : none;
  15. }
  16. form {
  17. margin : 10px 0px 0px 0px;
  18. padding : 0px;
  19. }
  20. div.content {
  21. overflow : hidden;
  22. background : white;
  23. border : 1px solid #ddd;
  24. padding : 10px;
  25. border-radius : 6px;
  26. box-shadow : 0px 1px 1px -1px rgba(0,0,0,0.1);
  27. }
  28. p.warning {
  29. color : red;
  30. }
  31. p.query, code {
  32. color : green;
  33. }
  34. p.insensitive {
  35. color : gray;
  36. }
  37. div.insensitive-small {
  38. color : gray;
  39. font-size : 10px;
  40. }
  41. .floatingLogo {
  42. display : none;
  43. }
  44. a {
  45. color : rgb(82, 168, 236);
  46. text-decoration : none;
  47. }
  48. a:hover {
  49. color : black;
  50. }
  51. .alert {
  52. padding: 8px 35px 8px 14px;
  53. margin-bottom: 20px;
  54. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  55. background-color: #fcf8e3;
  56. border: 1px solid #fbeed5;
  57. -webkit-border-radius: 4px;
  58. -moz-border-radius: 4px;
  59. border-radius: 4px;
  60. }
  61. .alert,
  62. .alert h4 {
  63. color: #c09853;
  64. }
  65. .alert h4 {
  66. margin: 0;
  67. }
  68. .alert .close {
  69. position: relative;
  70. top: -2px;
  71. right: -21px;
  72. line-height: 20px;
  73. cursor : pointer;
  74. }
  75. .alert-success {
  76. color: #468847;
  77. background-color: #dff0d8;
  78. border-color: #d6e9c6;
  79. }
  80. .alert-success h4 {
  81. color: #468847;
  82. }
  83. .alert-danger,
  84. .alert-error {
  85. color: #b94a48;
  86. background-color: #f2dede;
  87. border-color: #eed3d7;
  88. }
  89. .alert-danger h4,
  90. .alert-error h4 {
  91. color: #b94a48;
  92. }
  93. .alert-info {
  94. color: #3a87ad;
  95. background-color: #d9edf7;
  96. border-color: #bce8f1;
  97. }
  98. .alert-info h4 {
  99. color: #3a87ad;
  100. }
  101. h1 {
  102. color : rgb(82, 168, 236);
  103. font-size : 32px;
  104. margin : 20px 0px 5px 0px;
  105. text-shadow : 0 0 6px #fff;
  106. }
  107. h2 {
  108. color : rgb(82, 168, 236);
  109. font-size : 14pt;
  110. border-width : 0px 0px 1px 0px;
  111. border-color : #f0f0f0;
  112. border-style : solid;
  113. }
  114. div.content > h2 {
  115. margin-top : 0px;
  116. }
  117. div.rss h1 {
  118. border-width : 0px 0px 1px 0px;
  119. border-color : gray;
  120. border-style : dotted;
  121. color : gray;
  122. }
  123. div.rss h2 {
  124. font-size : 12pt;
  125. }
  126. div.rss a.extlink {
  127. color : gray;
  128. border-width : 0px 0px 1px 0px;
  129. border-color : #778899;
  130. border-style : dotted;
  131. font-size : 9pt;
  132. }
  133. div.rss img {
  134. max-width : 775px;
  135. }
  136. div.rss p.description {
  137. color : gray;
  138. font-size : 9pt;
  139. }
  140. div.rss div.content {
  141. margin-top : 0.5em;
  142. }
  143. div.rss img.feedicon {
  144. float : right;
  145. }
  146. div.rss hr {
  147. border-width : 0px 0px 1px 0px;
  148. border-style : dashed;
  149. border-color : #e0e0e0;
  150. }
  151. body#sharepopup {
  152. background-color : white;
  153. background-image : url("../images/toolbar.png");
  154. background-repeat : repeat-x;
  155. background-position : bottom;
  156. margin : 10px;
  157. padding : 0px;
  158. }
  159. body#sharepopup h1 {
  160. font-size : 14px;
  161. margin : 0px;
  162. color : rgb(82, 168, 236);
  163. }
  164. body#sharepopup table {
  165. background : white;
  166. border : 1px solid rgb(82, 168, 236);
  167. padding : 5px;
  168. }
  169. body#sharepopup form {
  170. height : 100%;
  171. }
  172. body#sharepopup input {
  173. width : 100%;
  174. }
  175. div.autocomplete {
  176. position : absolute;
  177. width : 250px;
  178. background-color : white;
  179. border :1px solid #778899;
  180. margin : 0px;
  181. padding : 0px;
  182. z-index : 4;
  183. }
  184. div.autocomplete ul {
  185. list-style-type : none;
  186. margin : 0px;
  187. padding : 0px;
  188. font-size : 10px;
  189. }
  190. div.autocomplete ul li.selected {
  191. background-color : #fff7d5;
  192. }
  193. div.autocomplete ul li {
  194. list-style-type : none;
  195. display : block;
  196. margin : 0;
  197. padding : 2px;
  198. height : 32px;
  199. cursor : pointer;
  200. }
  201. fieldset {
  202. border-width : 0px;
  203. padding : 0px 0px 5px 0px;
  204. margin : 0px;
  205. }
  206. fieldset input {
  207. font-family : sans-serif;
  208. font-size : medium;
  209. border-spacing : 2px;
  210. border : 1px solid #b5bcc7;
  211. padding : 2px;
  212. }
  213. fieldset label {
  214. width : 120px;
  215. margin-right : 20px;
  216. display : inline-block;
  217. text-align : right;
  218. color : gray;
  219. }
  220. body.otp {
  221. margin : 1em;
  222. padding : 0px;
  223. }
  224. form.otpform {
  225. margin : 0px;
  226. padding : 0px;
  227. }
  228. form.otpform label {
  229. margin : 0px;
  230. padding : 0px;
  231. }
  232. body.otp div.content {
  233. display : inline-block;
  234. width : auto;
  235. }
  236. span.hint {
  237. font-size : 10px;
  238. color : gray;
  239. }