Advertisement
Guest User

Untitled

a guest
Feb 21st, 2013
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.81 KB | None | 0 0
  1. div#calculator-window
  2. {
  3. width:400px;
  4. height:350px;
  5. background-color:#BBDBFB;
  6. background-image:url("images/top.png");
  7. background-repeat:no-repeat;
  8. border:1px solid black;
  9. border-radius:5px;
  10. box-shadow:3px 3px 10px black;
  11. padding: 25px 5px 5px 5px;
  12. margin:0 auto;
  13. }
  14. #calculator-canvas
  15. {
  16. background-color:#D9E4F1;
  17. border:1px solid #7B7B7B;
  18. border-radius:1px;
  19. font-size:14px;
  20. height:345px;
  21. width:396px;
  22. }
  23. #top-menu
  24. {
  25. background-color:#EDF0F8;
  26. color:#000;
  27. text-align:left;
  28. border-bottom:1px solid #B6BCCC;
  29. background: rgb(254,254,255); /* Old browsers */
  30. background: -moz-linear-gradient(top, rgba(254,254,255,1) 0%, rgba(239,242,249,1) 37%, rgba(214,221,239,1) 43%, rgba(224,229,245,1) 100%); /* FF3.6+ */
  31. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(254,254,255,1)), color-stop(37%,rgba(239,242,249,1)), color-stop(43%,rgba(214,221,239,1)), color-stop(100%,rgba(224,229,245,1))); /* Chrome,Safari4+ */
  32. background: -webkit-linear-gradient(top, rgba(254,254,255,1) 0%,rgba(239,242,249,1) 37%,rgba(214,221,239,1) 43%,rgba(224,229,245,1) 100%); /* Chrome10+,Safari5.1+ */
  33. background: -o-linear-gradient(top, rgba(254,254,255,1) 0%,rgba(239,242,249,1) 37%,rgba(214,221,239,1) 43%,rgba(224,229,245,1) 100%); /* Opera 11.10+ */
  34. background: -ms-linear-gradient(top, rgba(254,254,255,1) 0%,rgba(239,242,249,1) 37%,rgba(214,221,239,1) 43%,rgba(224,229,245,1) 100%); /* IE10+ */
  35. background: linear-gradient(to bottom, rgba(254,254,255,1) 0%,rgba(239,242,249,1) 37%,rgba(214,221,239,1) 43%,rgba(224,229,245,1) 100%); /* W3C */
  36. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefeff', endColorstr='#e0e5f5',GradientType=0 ); /* IE6-9 */
  37. }
  38. #top-menu>ul
  39. {
  40. padding:2px 2px 2px 5px;
  41. margin:0px;
  42. }
  43. #top-menu>ul>li
  44. {
  45. list-style:none;
  46. display:inline;
  47. margin-right:15px;
  48. }
  49. .menu-shortcut
  50. {
  51. text-decoration:underline;
  52. }
  53. #result
  54. {
  55. width:95%;
  56. height:40px;
  57. float:center;
  58. text-align:right;
  59. background-color:#E9F1FB;
  60. color:black;
  61. font-family:Arial,sans-serif;
  62. font-size:16px;
  63. margin: 10px 10px 5px 10px;
  64. padding: 1px;
  65. background: rgb(229,239,250); /* Old browsers */
  66. background: -moz-linear-gradient(top, rgba(229,239,250,1) 0%, rgba(243,248,253,1) 52%, rgba(254,254,255,1) 100%); /* FF3.6+ */
  67. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(229,239,250,1)), color-stop(52%,rgba(243,248,253,1)), color-stop(100%,rgba(254,254,255,1))); /* Chrome,Safari4+ */
  68. background: -webkit-linear-gradient(top, rgba(229,239,250,1) 0%,rgba(243,248,253,1) 52%,rgba(254,254,255,1) 100%); /* Chrome10+,Safari5.1+ */
  69. background: -o-linear-gradient(top, rgba(229,239,250,1) 0%,rgba(243,248,253,1) 52%,rgba(254,254,255,1) 100%); /* Opera 11.10+ */
  70. background: -ms-linear-gradient(top, rgba(229,239,250,1) 0%,rgba(243,248,253,1) 52%,rgba(254,254,255,1) 100%); /* IE10+ */
  71. background: linear-gradient(to bottom, rgba(229,239,250,1) 0%,rgba(243,248,253,1) 52%,rgba(254,254,255,1) 100%); /* W3C */
  72. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5effa', endColorstr='#fefeff',GradientType=0 ); /* IE6-9 */
  73. }
  74. .border
  75. {
  76. border:1px solid #8E9CAD;
  77. border-radius:2px;
  78. }
  79. #binary-numbers
  80. {
  81. width: 95%;
  82. height:60px;
  83. margin: 0px 10px 3px 10px;
  84. padding: 1px;
  85. }
  86. #binary-numbers>ul:nth-child(2n+1)
  87. {
  88. padding:0px 0px 0px 2px;
  89. margin:0px;
  90. color:black;
  91. height:14px;
  92. }
  93. #binary-numbers>ul:nth-child(2n)
  94. {
  95. margin:0px;
  96. color: grey;
  97. padding:0px 0px 0px 2px;
  98. height:14px;
  99. }
  100. #binary-numbers>ul:nth-child(2n+1)>li
  101. {
  102. font-family: Consolas;
  103. font-size:13px;
  104. list-style: none;
  105. display: inline;
  106. margin-right: 7.5px;
  107. margin-left:7.5px;
  108. }
  109. #binary-numbers>ul:nth-child(2n)>li
  110. {
  111. font-family: Consolas;
  112. font-size:13px;
  113. margin-right: 162px;
  114. list-style: none;
  115. display: inline;
  116. margin-left:7.5px;
  117. }
  118. #binary-numbers>ul:nth-child(2n)>li:nth-child(2)
  119. {
  120. margin-right:130px;
  121. }
  122. #binary-numbers>ul:nth-child(2n)>li:last-child
  123. {
  124. margin-right:0px;
  125. }
  126. #binary-numbers>ul:last-child>li:nth-child(2)
  127. {
  128. margin-right:137px;
  129. }
  130. #buttons
  131. {
  132. display: inline-block;
  133. float: right;
  134. width:75%;
  135. }
  136. .row
  137. {
  138. margin: 5px 0px 0px 0px;
  139. }
  140. button
  141. {
  142. border-radius:4px;
  143. padding:0px 0px 0px 0px;
  144. font-size:13px;
  145. margin-right: 2px;
  146. font-family: Segoe UI;
  147. height: 23px;
  148. width: 31px;
  149. color: #1E395B;
  150. outline: none;
  151. }
  152. .button-enabled:hover,.button-numerical:hover, .button-state:hover
  153. {
  154. background: #fef4c5; /* Old browsers */
  155. background: -moz-linear-gradient(top, #fef4c5 0%, #fce3c7 47%, #e6dd83 52%, #fbeb8d 100%); /* FF3.6+ */
  156. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fef4c5), color-stop(47%,#fce3c7), color-stop(52%,#e6dd83), color-stop(100%,#fbeb8d)); /* Chrome,Safari4+ */
  157. background: -webkit-linear-gradient(top, #fef4c5 0%,#fce3c7 47%,#e6dd83 52%,#fbeb8d 100%); /* Chrome10+,Safari5.1+ */
  158. background: -o-linear-gradient(top, #fef4c5 0%,#fce3c7 47%,#e6dd83 52%,#fbeb8d 100%); /* Opera 11.10+ */
  159. background: -ms-linear-gradient(top, #fef4c5 0%,#fce3c7 47%,#e6dd83 52%,#fbeb8d 100%); /* IE10+ */
  160. background: linear-gradient(to bottom, #fef4c5 0%,#fce3c7 47%,#e6dd83 52%,#fbeb8d 100%); /* W3C */
  161. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fef4c5', endColorstr='#fbeb8d',GradientType=0 ); /* IE6-9 */
  162. border: 1px solid #F7DD34;
  163. }
  164. .button-numerical
  165. {
  166. padding:0px 0px 0px 0px;
  167. line-height: 23px;
  168. font-size: 15px;
  169. border: 1px solid #8797AA;
  170. box-shadow: inset 0 0 0 1px #fff;
  171. background: -webkit-linear-gradient(#F7FBFF 0%, #EDF3F8 49%, #E7EDF5 50%, #F3FBFF 100%);
  172. background: -moz-linear-gradient(#F7FBFF 0%, #EDF3F8 49%, #E7EDF5 50%, #F3FBFF 100%);
  173. background: -o-linear-gradient(#F7FBFF 0%, #EDF3F8 49%, #E7EDF5 50%, #F3FBFF 100%);
  174. background: linear-gradient(#F7FBFF 0%, #EDF3F8 49%, #E7EDF5 50%, #F3FBFF 100%);
  175. }
  176. .button-state
  177. {
  178. font-size:11px;
  179. line-height: 23px;
  180. border: 1px solid #B4C2D1;
  181. background-color: #D9E4F1;
  182. box-shadow: inset 0 0 0 1px #fff;
  183. }
  184. .button-enabled
  185. {
  186. padding:0px 0px 0px 0px;
  187. line-height: 23px;
  188. font-size: 11px;
  189. border: 1px solid #8797AA;
  190. box-shadow: inset 0 0 0 1px #fff;
  191. background: rgb(237,243,249); /* Old browsers */
  192. background: -moz-linear-gradient(top, rgba(237,243,249,1) 0%, rgba(226,234,243,1) 52%, rgba(213,224,237,1) 56%, rgba(214,225,239,1) 100%); /* FF3.6+ */
  193. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(237,243,249,1)), color-stop(52%,rgba(226,234,243,1)), color-stop(56%,rgba(213,224,237,1)), color-stop(100%,rgba(214,225,239,1))); /* Chrome,Safari4+ */
  194. background: -webkit-linear-gradient(top, rgba(237,243,249,1) 0%,rgba(226,234,243,1) 52%,rgba(213,224,237,1) 56%,rgba(214,225,239,1) 100%); /* Chrome10+,Safari5.1+ */
  195. background: -o-linear-gradient(top, rgba(237,243,249,1) 0%,rgba(226,234,243,1) 52%,rgba(213,224,237,1) 56%,rgba(214,225,239,1) 100%); /* Opera 11.10+ */
  196. background: -ms-linear-gradient(top, rgba(237,243,249,1) 0%,rgba(226,234,243,1) 52%,rgba(213,224,237,1) 56%,rgba(214,225,239,1) 100%); /* IE10+ */
  197. background: linear-gradient(to bottom, rgba(237,243,249,1) 0%,rgba(226,234,243,1) 52%,rgba(213,224,237,1) 56%,rgba(214,225,239,1) 100%); /* W3C */
  198. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#edf3f9', endColorstr='#d6e1ef',GradientType=0 ); /* IE6-9 */
  199. }
  200. .button-disabled
  201. {
  202. border: 1px solid #B4C2D1;
  203. background-color: #D9E4F1;
  204. }
  205. .button-disabled:hover
  206. {
  207. background-color: #D9E4F1;
  208. }
  209. #zero
  210. {
  211. width: 67px;
  212. }
  213. #equals
  214. {
  215. margin-top: 5px;
  216. margin-right: 7px;
  217. float: right;
  218. height: 51px;
  219. }
  220. #aside-numeral-systems
  221. {
  222. float: left;
  223. width:20%;
  224. display: inline-block;
  225. padding:5px 0px 10px 10px;
  226. }
  227. #aside-numeral-systems div span
  228. {
  229. font-size:12px;
  230. font-family: Segoe UI;
  231. display:block;
  232. margin: 0px 0px 1x 0px;
  233. padding:0px 0px 1px 0px;
  234. text-align:left;
  235. }
  236. #aside-numeral-systems div.border.system+div.border.system
  237. {
  238. margin-top:5px;
  239. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement