axure_rp_page.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. /* so the window resize fires within a frame in IE7 */
  2. html, body {
  3. height: 100%;
  4. }
  5. a {
  6. color: inherit;
  7. }
  8. p {
  9. margin: 0px;
  10. text-rendering: optimizeLegibility;
  11. font-feature-settings: "kern" 1;
  12. -webkit-font-feature-settings: "kern";
  13. -moz-font-feature-settings: "kern";
  14. -moz-font-feature-settings: "kern=1";
  15. font-kerning: normal;
  16. }
  17. iframe {
  18. background: #FFFFFF;
  19. }
  20. /* to match IE with C, FF */
  21. input {
  22. padding: 1px 0px 1px 0px;
  23. box-sizing: border-box;
  24. -moz-box-sizing: border-box;
  25. }
  26. textarea {
  27. margin: 0px;
  28. box-sizing: border-box;
  29. -moz-box-sizing: border-box;
  30. }
  31. div.intcases {
  32. font-family: arial;
  33. font-size: 12px;
  34. text-align:left;
  35. border:1px solid #AAA;
  36. background:#FFF none repeat scroll 0% 0%;
  37. z-index:9999;
  38. visibility:hidden;
  39. position:absolute;
  40. padding: 0px;
  41. border-radius: 3px;
  42. white-space: nowrap;
  43. }
  44. div.intcaselink {
  45. cursor: pointer;
  46. padding: 3px 8px 3px 8px;
  47. margin: 5px;
  48. background:#EEE none repeat scroll 0% 0%;
  49. border:1px solid #AAA;
  50. border-radius: 3px;
  51. }
  52. div.refpageimage {
  53. position: absolute;
  54. left: 0px;
  55. top: 0px;
  56. font-size: 0px;
  57. width: 16px;
  58. height: 16px;
  59. cursor: pointer;
  60. background-image: url(images/newwindow.gif);
  61. background-repeat: no-repeat;
  62. }
  63. div.annnoteimage {
  64. position: absolute;
  65. left: 0px;
  66. top: 0px;
  67. font-size: 0px;
  68. /*width: 16px;
  69. height: 12px;*/
  70. cursor: help;
  71. /*background-image: url(images/note.gif);*/
  72. /*background-repeat: no-repeat;*/
  73. width: 13px;
  74. height: 12px;
  75. padding-top: 1px;
  76. text-align: center;
  77. background-color: #138CDD;
  78. -moz-box-shadow: 1px 1px 3px #aaa;
  79. -webkit-box-shadow: 1px 1px 3px #aaa;
  80. box-shadow: 1px 1px 3px #aaa;
  81. }
  82. div.annnoteline {
  83. display: inline-block;
  84. width: 9px;
  85. height: 1px;
  86. border-bottom: 1px solid white;
  87. margin-top: 1px;
  88. }
  89. div.annnotelabel {
  90. position: absolute;
  91. left: 0px;
  92. top: 0px;
  93. font-family: Helvetica,Arial;
  94. font-size: 10px;
  95. /*border: 1px solid rgb(166,221,242);*/
  96. cursor: help;
  97. /*background:rgb(0,157,217) none repeat scroll 0% 0%;*/
  98. padding: 1px 3px 1px 3px;
  99. white-space: nowrap;
  100. color: white;
  101. background-color: #138CDD;
  102. -moz-box-shadow: 1px 1px 3px #aaa;
  103. -webkit-box-shadow: 1px 1px 3px #aaa;
  104. box-shadow: 1px 1px 3px #aaa;
  105. }
  106. .annotation {
  107. font-size: 12px;
  108. padding-left: 2px;
  109. margin-bottom: 5px;
  110. }
  111. .annotationName {
  112. /*font-size: 13px;
  113. font-weight: bold;
  114. margin-bottom: 3px;
  115. white-space: nowrap;*/
  116. font-family: 'Trebuchet MS';
  117. font-size: 14px;
  118. font-weight: bold;
  119. margin-bottom: 5px;
  120. white-space: nowrap;
  121. }
  122. .annotationValue {
  123. font-family: Arial, Helvetica, Sans-Serif;
  124. font-size: 12px;
  125. color: #4a4a4a;
  126. line-height: 21px;
  127. margin-bottom: 20px;
  128. }
  129. .noteLink {
  130. text-decoration: inherit;
  131. color: inherit;
  132. }
  133. .noteLink:hover {
  134. background-color: white;
  135. }
  136. /* this is a fix for the issue where dialogs jump around and takes the text-align from the body */
  137. .dialogFix {
  138. position:absolute;
  139. text-align:left;
  140. border: 1px solid #8f949a;
  141. }
  142. @keyframes pulsate {
  143. from {
  144. box-shadow: 0 0 10px #15d6ba;
  145. }
  146. to {
  147. box-shadow: 0 0 20px #15d6ba;
  148. }
  149. }
  150. @-webkit-keyframes pulsate {
  151. from {
  152. -webkit-box-shadow: 0 0 10px #15d6ba;
  153. box-shadow: 0 0 10px #15d6ba;
  154. }
  155. to {
  156. -webkit-box-shadow: 0 0 20px #15d6ba;
  157. box-shadow: 0 0 20px #15d6ba;
  158. }
  159. }
  160. @-moz-keyframes pulsate {
  161. from {
  162. -moz-box-shadow: 0 0 10px #15d6ba;
  163. box-shadow: 0 0 10px #15d6ba;
  164. }
  165. to {
  166. -moz-box-shadow: 0 0 20px #15d6ba;
  167. box-shadow: 0 0 20px #15d6ba;
  168. }
  169. }
  170. .legacyPulsateBorder {
  171. /*border: 5px solid #15d6ba;
  172. margin: -5px;*/
  173. -moz-box-shadow: 0 0 10px 3px #15d6ba;
  174. box-shadow: 0 0 10px 3px #15d6ba;
  175. }
  176. .pulsateBorder {
  177. animation-name: pulsate;
  178. animation-timing-function: ease-in-out;
  179. animation-duration: 0.9s;
  180. animation-iteration-count: infinite;
  181. animation-direction: alternate;
  182. -webkit-animation-name: pulsate;
  183. -webkit-animation-timing-function: ease-in-out;
  184. -webkit-animation-duration: 0.9s;
  185. -webkit-animation-iteration-count: infinite;
  186. -webkit-animation-direction: alternate;
  187. -moz-animation-name: pulsate;
  188. -moz-animation-timing-function: ease-in-out;
  189. -moz-animation-duration: 0.9s;
  190. -moz-animation-iteration-count: infinite;
  191. -moz-animation-direction: alternate;
  192. }
  193. .ax_default_hidden, .ax_default_unplaced{
  194. display: none;
  195. visibility: hidden;
  196. }
  197. .widgetNoteSelected {
  198. -moz-box-shadow: 0 0 10px 3px #138CDD;
  199. box-shadow: 0 0 10px 3px #138CDD;
  200. /*-moz-box-shadow: 0 0 20px #3915d6;
  201. box-shadow: 0 0 20px #3915d6;*/
  202. /*border: 3px solid #3915d6;*/
  203. /*margin: -3px;*/
  204. }
  205. .singleImg {
  206. display: none;
  207. visibility: hidden;
  208. }