jquery.dragval-1.01.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /* Default demo page CSS goes here */
  2. * { margin: 0; padding: 0; list-style: none; text-decoration: none;}
  3. html {
  4. font-family: Helvetica,Arial,sans-serif;
  5. color: #2C3E54;
  6. font-size: 13px;
  7. background: #ffffff;
  8. }
  9. body {
  10. width: 620px;
  11. margin: 0 auto;
  12. }
  13. body h1 {
  14. float: left;
  15. width: 520px;
  16. font-size: 25px;
  17. font-weight: normal;
  18. color: #333;
  19. }
  20. body h2 {
  21. float: left;
  22. width: 520px;
  23. font-size: 20px;
  24. font-weight: normal;
  25. color: #666;
  26. }
  27. body div.Dragval {
  28. float: left;
  29. width: 520px;
  30. margin-bottom: 20px;
  31. margin-top: 20px;
  32. }
  33. body div.Code {
  34. float: left;
  35. width:488px;
  36. margin-bottom: 20px;
  37. border: 1px solid #ccc;
  38. background: #f0f0f0;
  39. padding: 15px;
  40. }
  41. body p {
  42. float: left;
  43. width: 518px;
  44. }
  45. body div.Code p {
  46. float: left;
  47. width: 518px;
  48. line-height: 17px;
  49. }
  50. #Container {
  51. float: left;
  52. width: 520px;
  53. padding: 50px;
  54. background: #fff;
  55. }
  56. a {
  57. color: #0063DC;
  58. text-decoration: underline;
  59. }
  60. a:hover { text-decoration: none; }
  61. ul li {
  62. float: left;
  63. width: 520px;
  64. margin-top: 4px;
  65. }
  66. /* jQuery Dragval CSS goes here */
  67. .Dragval {
  68. float: left;
  69. width: 516px;
  70. }
  71. .Container {
  72. float: left;
  73. width: 516px;
  74. height: 50px;
  75. }
  76. .Track {
  77. float: left;
  78. width: 516px;
  79. height: 26px;
  80. background: url('../images/dragval_bg.png');
  81. position: absolute;
  82. cursor: pointer;
  83. }
  84. .Track .LeftBtn{
  85. float: left;
  86. width: 21px;
  87. height: 26px;
  88. cursor: pointer;
  89. }
  90. .Track .RightBtn{
  91. float: left;
  92. width: 21px;
  93. height: 26px;
  94. cursor: pointer;
  95. }
  96. .Track .Labels {
  97. float: left;
  98. width: 474px;
  99. height: 26px;
  100. }
  101. .Track .Label{
  102. float: left;
  103. width: 52px;
  104. height: 26px;
  105. cursor: pointer;
  106. }
  107. .Track .LabelFirst {
  108. float: left;
  109. width: 29px;
  110. height: 26px;
  111. }
  112. .Track .LabelLast {
  113. float: left;
  114. width: 29px;
  115. height: 26px;
  116. }
  117. .Measure {
  118. width: 512px;
  119. position: relative;
  120. top: 31px;
  121. }
  122. .Measure .Value {
  123. float: left;
  124. width: 51px;
  125. text-align: center;
  126. font-size: 10px;
  127. }
  128. .Indicator {
  129. position: absolute;
  130. width: 16px;
  131. height: 26px;
  132. background: url('../images/dragval_indicator.png') no-repeat;
  133. left: 17px;
  134. top: 0;
  135. cursor: pointer;
  136. }