Guest User

Untitled

a guest
Oct 21st, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. body {
  2. background-color: rgba(199, 46, 95, 0.29);
  3. }
  4.  
  5. .calculator {
  6. max-width: 320px;
  7. background: #fff;
  8. margin: 12% auto;
  9. min-height: 320px;
  10. border-radius: 5px;
  11. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  12. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  13. }
  14.  
  15. .display {
  16. padding-top: 6px;
  17.  
  18. }
  19.  
  20. .result {
  21. margin-left: 5px;
  22. display: block;
  23. width: 88%;
  24. height: 22px;
  25. padding: 6px 12px;
  26. font-size: 14px;
  27. line-height: 1.42857143;
  28. color: #000;
  29. background-color: #fff;
  30. border: 1px solid #ccc;
  31. border-radius: 4px;
  32. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  33. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  34. -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  35. -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  36. transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  37. }
  38.  
  39. .keys {
  40. margin-top: 5px;
  41. }
  42.  
  43. .column {
  44. display: inline-block;
  45. float: left;
  46. width: 23%;
  47. margin-left: 5px;
  48. color: #fff;
  49. background-color: #c30376;
  50. }
  51.  
  52. .key-btn {
  53. margin-bottom: 5px;
  54. padding: 18px 0;
  55. font-size: 18px;
  56. font-weight: 400;
  57. line-height: 1.42857143;
  58. text-align: center;
  59. white-space: nowrap;
  60. vertical-align: middle;
  61. cursor: pointer;
  62. border: 1px solid transparent;
  63. border-radius: 4px;
  64. }
  65.  
  66. .key-btn:hover,
  67. .key-btn:active:hover {
  68. color: #fff;
  69. background-color: rgba(195, 3, 118, 0.76);
  70. border-color: rgba(195, 3, 118, 0.76);
  71. }
Add Comment
Please, Sign In to add comment