Advertisement
Guest User

style.css

a guest
Sep 30th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. * { /*t'rn teeb seda, et see on k]ikidele elementidele*/
  2. font-family: Arial;
  3. font-weight: bold;
  4. }
  5.  
  6. #calculator{
  7. width:350px;
  8. margin:100px auto;
  9. padding-top: 8px;
  10. padding-left:14px;
  11. background:linear-gradient(#9dd2ea,#8bceec);
  12. border-radius: 5px;
  13.  
  14. /*disable user select*/
  15. -webkit-user-select: none;
  16. -moz-user-select: none;
  17. -ms-user-select: none;
  18. user-select: none;
  19. }
  20.  
  21. #buttons span,
  22. #top span {
  23. position: relative;
  24. top:0;
  25.  
  26. display: inline-block;
  27. width: 70px;
  28. height: 40px;
  29. background: white;
  30. margin-right: 14px;
  31. margin-bottom: 8px;
  32.  
  33. text-align: center;
  34. line-height: 40px;
  35. color: grey;
  36. border-radius: 5px;
  37. box-shadow: 0px 4px rgba(0,0,0,0.2);
  38.  
  39. cursor: pointer;
  40. transition: all 0.2s ease;
  41. }
  42. #buttons span:hover,
  43. #top span:hover {
  44. color: white;
  45. background: #9c89f6;
  46. box-shadow: 0px 4px #6b54d3;
  47. }
  48. #buttons span:active
  49. #top span:active {
  50. box-shadow: none;
  51. top: 4px
  52. }
  53. #screen {
  54. float: right;
  55. background: rgba(0,0,0,0.2);
  56. width: 224px;
  57. height: 40px;
  58. margin-right: 18px;
  59. padding: 0 10px;
  60. box-shadow: inset 0px 4px rgba(0,0,0,0.2);
  61.  
  62. border-radius: 5px;
  63. text-align: right;
  64. line-height: 40px;
  65. color: white;
  66. font-size: 20px;
  67. letter-spacing: 1px;
  68. text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  69. }
  70. #correct {
  71. width: 60px;
  72. height: 60px;
  73. text-align: center;
  74. line-height: 60px;
  75. margin: 0 auto;
  76. background: grey;
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement