axure_rp_page.css 3.1 KB

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