lmarkov

calculator-table

Nov 20th, 2012
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>        
  4.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5.        
  6.         <title>Calculator-like table</title>
  7.        
  8.         <link rel="stylesheet" type="text/css" href="style.css" />
  9.     </head>
  10.     <body>
  11.         <div id="content">
  12.             <form>
  13.                 <fieldset>
  14.                     <textarea name="results" class="result" cols="30" rows="1" readonly="readonly">123</textarea>
  15.                         <ul>
  16.                             <li><button type="button" class="digit">1</button></li>
  17.                             <li><button type="button" class="digit">2</button></li>
  18.                             <li><button type="button" class="digit">3</button></li>
  19.                             <li><button type="button" class="digit">+</button></li>
  20.                         </ul>
  21.                         <ul>
  22.                             <li><button type="button" class="digit">4</button></li>
  23.                             <li><button type="button" class="digit">5</button></li>
  24.                             <li><button type="button" class="digit">6</button></li>
  25.                             <li><button type="button" class="digit">-</button></li>
  26.                         </ul>
  27.                         <ul>
  28.                             <li><button type="button" class="digit">7</button></li>
  29.                             <li><button type="button" class="digit">8</button></li>
  30.                             <li><button type="button" class="digit">9</button></li>
  31.                             <li><button type="button" class="digit">*</button></li>
  32.                         </ul>
  33.                         <ul>
  34.                             <li><button type="button" class="zero">0</button></li>
  35.                             <li><button type="button" class="digit">.</button></li>
  36.                             <li><button type="button" class="digit">/</button></li>
  37.                         </ul>
  38.                 </fieldset>
  39.             </form>
  40.         </div>
  41.     </body>
  42. </html>
  43.  
  44. *************************************************************
  45. css style
  46. *********************
  47. root {
  48.     display: block;
  49. }
  50.  
  51. div,form,input, fieldset,ul,li
  52. {
  53.     margin: 0px;
  54.     padding: 0px;
  55. }
  56.  
  57. ul
  58. {
  59.     margin: 0px;
  60.     padding: 2px;
  61. }
  62.  
  63. li
  64. {
  65.     list-style: none;
  66.     display: inline;
  67.     padding: 0px;
  68.     margin: 0px;
  69. }
  70.  
  71. body
  72. {
  73.     font-family: "Times New Roman",Georgia,Serif;
  74.     font-size: 16px;
  75.     background-color: #292929;
  76.     color: #FFFFFF;
  77. }
  78.  
  79. #content
  80. {
  81.     margin: 10px;
  82. }
  83.  
  84. fieldset
  85. {
  86.     border: 0px;
  87.     border-style: solid;
  88.     border-color: #9dddeb;
  89.     width: 320px;
  90.     text-align: center;
  91.     overflow: hidden;
  92. }
  93.  
  94. button
  95. {
  96.     font-family: "Times New Roman",Georgia,Serif;
  97.     font-size: 24px;
  98.     background-color: #292929;
  99.     color: #92fefc;
  100.     border: 1px;
  101.     border-style: solid;
  102.     border-color: #9dddeb;
  103. }
  104.  
  105. button.digit
  106. {
  107.     width: 72px;
  108.     height: 72px;
  109. }
  110.  
  111. button.zero
  112. {
  113.     width: 148px;
  114.     height: 72px;
  115. }
  116.  
  117. textArea.result
  118. {
  119.     width: 294px;
  120.     height: 72px;
  121.     font-family: "Times New Roman",Georgia,Serif;
  122.     font-size: 24px;
  123.     background-color: #292929;
  124.     color: #92fefc;
  125.     text-align: right;
  126.     border: 1px;
  127.     border-style: solid;
  128.     border-color: #9dddeb;
  129.     resize: none;
  130.     overflow: hidden;
  131.     line-height: 72px;
  132. }
Advertisement
Add Comment
Please, Sign In to add comment