You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
557 B

  1. /*Javascript Calculator CSS*/
  2. .calculator {
  3. width: 300px;
  4. height: 300px;
  5. background-color: #eeeeee;
  6. border: 2px solid #CCCCCC;
  7. margin: auto;
  8. clear: both;
  9. }
  10. .calculator td {
  11. height: 16.66%;
  12. }
  13. .calc_td_result {
  14. text-align: center;
  15. }
  16. .calc_result {
  17. width: 90%;
  18. text-align: right;
  19. }
  20. .calc_td_calculs {
  21. text-align: center;
  22. }
  23. .calc_calculs {
  24. width: 90%;
  25. text-align: left;
  26. }
  27. .calc_td_btn {
  28. width: 25%;
  29. height: 100%;
  30. }
  31. .calc_btn {
  32. width: 90%;
  33. height: 90%;
  34. font-size: 20px;
  35. }