Advertisement
tr00per92

Calculator-CSS

Jun 6th, 2014
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.47 KB | None | 0 0
  1. #calc {
  2.     width: 250px;
  3.     height: 320px;
  4.     border: 2px solid black;
  5.     text-align: center;
  6.     table-layout: fixed;
  7. }
  8.     #calc button {
  9.         width: 100%;
  10.         height: 110%;
  11.         font-size: 130%;
  12.     }
  13.     #calc button:hover {
  14.         background-color: darkgray;
  15.     }
  16.     #calc #display {
  17.         width: 98%;
  18.         height: 50px;
  19.         text-align: right;
  20.         font-size: 180%;
  21.     }
  22.  
  23. ::-webkit-input-placeholder {
  24.     color: black;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement