axure_rp_page.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. }
  11. iframe {
  12. background: #FFFFFF;
  13. }
  14. /* to match IE with C, FF */
  15. input {
  16. padding: 1px 0px 1px 0px;
  17. box-sizing: border-box;
  18. -moz-box-sizing: border-box;
  19. }
  20. textarea {
  21. margin: 0px;
  22. box-sizing: border-box;
  23. -moz-box-sizing: border-box;
  24. }
  25. div.intcases {
  26. font-family: arial;
  27. font-size: 12px;
  28. text-align:left;
  29. border:1px solid #AAA;
  30. background:#FFF none repeat scroll 0% 0%;
  31. z-index:9999;
  32. visibility:hidden;
  33. position:absolute;
  34. padding: 0px;
  35. border-radius: 3px;
  36. white-space: nowrap;
  37. }
  38. div.intcaselink {
  39. cursor: pointer;
  40. padding: 3px 8px 3px 8px;
  41. margin: 5px;
  42. background:#EEE none repeat scroll 0% 0%;
  43. border:1px solid #AAA;
  44. border-radius: 3px;
  45. }
  46. div.refpageimage {
  47. position: absolute;
  48. left: 0px;
  49. top: 0px;
  50. font-size: 0px;
  51. width: 16px;
  52. height: 16px;
  53. cursor: pointer;
  54. background-image: url(images/newwindow.gif);
  55. background-repeat: no-repeat;
  56. }
  57. div.annnoteimage {
  58. position: absolute;
  59. left: 0px;
  60. top: 0px;
  61. font-size: 0px;
  62. width: 16px;
  63. height: 12px;
  64. cursor: help;
  65. background-image: url(images/note.gif);
  66. background-repeat: no-repeat;
  67. }
  68. div.annnotelabel {
  69. position: absolute;
  70. left: 0px;
  71. top: 0px;
  72. font-family: Arial;
  73. font-size: 10px;
  74. border: 1px solid rgb(166,221,242);
  75. cursor: help;
  76. background:rgb(0,157,217) none repeat scroll 0% 0%;
  77. padding-left:3px;
  78. padding-right:3px;
  79. white-space: nowrap;
  80. color: white;
  81. }
  82. .annotationName {
  83. font-size: 13px;
  84. font-weight: bold;
  85. margin-bottom: 3px;
  86. white-space: nowrap;
  87. }
  88. .annotation {
  89. font-size: 12px;
  90. padding-left: 2px;
  91. margin-bottom: 5px;
  92. }
  93. /* this is a fix for the issue where dialogs jump around and takes the text-align from the body */
  94. .dialogFix {
  95. position:absolute;
  96. text-align:left;
  97. }
  98. @keyframes pulsate {
  99. from {
  100. box-shadow: 0 0 10px #74BA11;
  101. }
  102. to {
  103. box-shadow: 0 0 20px #74BA11;
  104. }
  105. }
  106. @-webkit-keyframes pulsate {
  107. from {
  108. -webkit-box-shadow: 0 0 10px #74BA11;
  109. box-shadow: 0 0 10px #74BA11;
  110. }
  111. to {
  112. -webkit-box-shadow: 0 0 20px #74BA11;
  113. box-shadow: 0 0 20px #74BA11;
  114. }
  115. }
  116. @-moz-keyframes pulsate {
  117. from {
  118. -moz-box-shadow: 0 0 10px #74BA11;
  119. box-shadow: 0 0 10px #74BA11;
  120. }
  121. to {
  122. -moz-box-shadow: 0 0 20px #74BA11;
  123. box-shadow: 0 0 20px #74BA11;
  124. }
  125. }
  126. .legacyPulsateBorder {
  127. border: 5px solid #74BA11;
  128. margin: -5px;
  129. }
  130. .pulsateBorder {
  131. animation-name: pulsate;
  132. animation-timing-function: ease-in-out;
  133. animation-duration: 0.9s;
  134. animation-iteration-count: infinite;
  135. animation-direction: alternate;
  136. -webkit-animation-name: pulsate;
  137. -webkit-animation-timing-function: ease-in-out;
  138. -webkit-animation-duration: 0.9s;
  139. -webkit-animation-iteration-count: infinite;
  140. -webkit-animation-direction: alternate;
  141. -moz-animation-name: pulsate;
  142. -moz-animation-timing-function: ease-in-out;
  143. -moz-animation-duration: 0.9s;
  144. -moz-animation-iteration-count: infinite;
  145. -moz-animation-direction: alternate;
  146. }