utility.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  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. }
  74. .alert-success {
  75. color: #468847;
  76. background-color: #dff0d8;
  77. border-color: #d6e9c6;
  78. }
  79. .alert-success h4 {
  80. color: #468847;
  81. }
  82. .alert-danger,
  83. .alert-error {
  84. color: #b94a48;
  85. background-color: #f2dede;
  86. border-color: #eed3d7;
  87. }
  88. .alert-danger h4,
  89. .alert-error h4 {
  90. color: #b94a48;
  91. }
  92. .alert-info {
  93. color: #3a87ad;
  94. background-color: #d9edf7;
  95. border-color: #bce8f1;
  96. }
  97. .alert-info h4 {
  98. color: #3a87ad;
  99. }
  100. h1 {
  101. color : rgb(82, 168, 236);
  102. font-size : 32px;
  103. margin : 20px 0px 5px 0px;
  104. text-shadow : 0 0 6px #fff;
  105. }
  106. h2 {
  107. color : rgb(82, 168, 236);
  108. font-size : 14pt;
  109. border-width : 0px 0px 1px 0px;
  110. border-color : #f0f0f0;
  111. border-style : solid;
  112. }
  113. div.content > h2 {
  114. margin-top : 0px;
  115. }
  116. div.rss h1 {
  117. border-width : 0px 0px 1px 0px;
  118. border-color : gray;
  119. border-style : dotted;
  120. color : gray;
  121. }
  122. div.rss h2 {
  123. font-size : 12pt;
  124. }
  125. div.rss a.extlink {
  126. color : gray;
  127. border-width : 0px 0px 1px 0px;
  128. border-color : #778899;
  129. border-style : dotted;
  130. font-size : 9pt;
  131. }
  132. div.rss img {
  133. max-width : 775px;
  134. }
  135. div.rss p.description {
  136. color : gray;
  137. font-size : 9pt;
  138. }
  139. div.rss div.content {
  140. margin-top : 0.5em;
  141. }
  142. div.rss img.feedicon {
  143. float : right;
  144. }
  145. div.rss hr {
  146. border-width : 0px 0px 1px 0px;
  147. border-style : dashed;
  148. border-color : #e0e0e0;
  149. }
  150. body#sharepopup {
  151. background-color : white;
  152. background-image : url("../images/toolbar.png");
  153. background-repeat : repeat-x;
  154. background-position : bottom;
  155. margin : 10px;
  156. padding : 0px;
  157. }
  158. body#sharepopup h1 {
  159. font-size : 14px;
  160. margin : 0px;
  161. color : rgb(82, 168, 236);
  162. }
  163. body#sharepopup table {
  164. background : white;
  165. border : 1px solid rgb(82, 168, 236);
  166. padding : 5px;
  167. }
  168. body#sharepopup form {
  169. height : 100%;
  170. }
  171. body#sharepopup input {
  172. width : 100%;
  173. }
  174. div.autocomplete {
  175. position : absolute;
  176. width : 250px;
  177. background-color : white;
  178. border :1px solid #778899;
  179. margin : 0px;
  180. padding : 0px;
  181. z-index : 4;
  182. }
  183. div.autocomplete ul {
  184. list-style-type : none;
  185. margin : 0px;
  186. padding : 0px;
  187. font-size : 10px;
  188. }
  189. div.autocomplete ul li.selected {
  190. background-color : #fff7d5;
  191. }
  192. div.autocomplete ul li {
  193. list-style-type : none;
  194. display : block;
  195. margin : 0;
  196. padding : 2px;
  197. height : 32px;
  198. cursor : pointer;
  199. }
  200. fieldset {
  201. border-width : 0px;
  202. padding : 0px 0px 5px 0px;
  203. margin : 0px;
  204. }
  205. fieldset input {
  206. font-family : sans-serif;
  207. font-size : medium;
  208. border-spacing : 2px;
  209. border : 1px solid #b5bcc7;
  210. padding : 2px;
  211. }
  212. fieldset label {
  213. width : 120px;
  214. margin-right : 20px;
  215. display : inline-block;
  216. text-align : right;
  217. color : gray;
  218. }
  219. body.otp {
  220. margin : 1em;
  221. padding : 0px;
  222. }
  223. form.otpform {
  224. margin : 0px;
  225. padding : 0px;
  226. }
  227. form.otpform label {
  228. margin : 0px;
  229. padding : 0px;
  230. }
  231. body.otp div.content {
  232. display : inline-block;
  233. width : auto;
  234. }
  235. span.hint {
  236. font-size : 10px;
  237. color : gray;
  238. }