Advertisement
vic_alexiev

Calculator.css

Oct 31st, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.70 KB | None | 0 0
  1. body {
  2.     background-color: rgb(0, 0, 0);
  3. }
  4.  
  5. table {
  6.     border-collapse: collapse;
  7.     background-color: rgb(50, 56, 57);
  8.     margin: auto;
  9. }
  10.  
  11. td {
  12.     border-color: rgb(130, 180, 192);
  13.     border-style: solid;
  14.     border-width: 2px;
  15.     height: 70px;
  16. }
  17.  
  18.     td.cell-1x1, td.cell-2x1 {
  19.         width: 60px;
  20.     }
  21.  
  22.     td.cell-2x1 {
  23.         height: 140px;
  24.     }
  25.  
  26. input {
  27.     width: 100%;
  28.     height: 100%;
  29.     padding: 0px;
  30.     font-family: Consolas, Verdana, Arial, sans-serif;
  31.     font-size: 2.4em;
  32.     font-weight: bold;
  33.     color: rgb(140, 244, 242);
  34.     background-color: rgb(50, 56, 57);
  35.     border-style: none;
  36. }
  37.  
  38.     input[type=text] {
  39.         text-align: right;
  40.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement