Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. body {
  2. background-color: #d13902;
  3. color: #000;
  4. }
  5.  
  6. .mainbox {
  7. margin: 10% auto;
  8. padding: 1em 1em;
  9. width: 300px;
  10. height: auto;
  11. background-color: #FFF;
  12. border-radius: 10px;
  13. -webkit-box-shadow: 6px 6px 64px 0px rgba(0,0,0,0.75);
  14. -moz-box-shadow: 6px 6px 64px 0px rgba(0,0,0,0.75);
  15. box-shadow: 6px 6px 64px 0px rgba(0,0,0,0.75);
  16. }
  17.  
  18. .numberfield {
  19. padding: 0.5em;
  20. margin: 0px auto;
  21. width: 100%;
  22. height: 30px;
  23. border-style: solid;
  24. border-radius: 5px;
  25. border-width: 1px;
  26. border-color: #d13902;
  27. }
  28.  
  29. .panel {
  30. width: 22%;
  31. height: 20%;
  32. background-color: #EEE;
  33. margin: 7px 0px 0px 7px;
  34. border-style: solid;
  35. text-align: center;
  36. padding: 7%;
  37. }
  38.  
  39. .firstpanel {
  40. margin-left: 15px;
  41. }
  42.  
  43. .numberrow {
  44. padding: auto 20px auto 20px;
  45. }
  46.  
  47. /* Push */
  48. @-webkit-keyframes hvr-push {
  49. 50% {
  50. -webkit-transform: scale(0.8);
  51. transform: scale(0.8);
  52. }
  53. 100% {
  54. -webkit-transform: scale(1);
  55. transform: scale(1);
  56. }
  57. }
  58. @keyframes hvr-push {
  59. 50% {
  60. -webkit-transform: scale(0.8);
  61. transform: scale(0.8);
  62. }
  63. 100% {
  64. -webkit-transform: scale(1);
  65. transform: scale(1);
  66. }
  67. }
  68. .hvr-push {
  69. display: inline-block;
  70. vertical-align: middle;
  71. -webkit-transform: perspective(1px) translateZ(0);
  72. transform: perspective(1px) translateZ(0);
  73. box-shadow: 0 0 1px transparent;
  74. }
  75. .hvr-push:hover, .hvr-push:focus, .hvr-push:active {
  76. -webkit-animation-name: hvr-push;
  77. animation-name: hvr-push;
  78. -webkit-animation-duration: 0.3s;
  79. animation-duration: 0.3s;
  80. -webkit-animation-timing-function: linear;
  81. animation-timing-function: linear;
  82. -webkit-animation-iteration-count: 1;
  83. animation-iteration-count: 1;
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement