moka.css 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @import "reset.css";
  2. body {
  3. background: #d5d5d5;
  4. }
  5. .moka_view .mk_default {
  6. font-size: 12px;
  7. color: #555;
  8. text-shadow: 0 1px 0 white;
  9. }
  10. .moka_view .mk_control:focus {
  11. outline: 0;
  12. }
  13. .moka_view button,
  14. .moka_view button:active,
  15. .moka_view button:focus {
  16. font-size: 12px;
  17. color: #555;
  18. text-shadow: 0 1px 0 white;
  19. margin: 100px;
  20. -webkit-border-radius: 3px;
  21. -moz-border-radius: 3px;
  22. border-radius: 3px;
  23. border-top: solid 1px #999999;
  24. border-left: solid 1px #999999;
  25. border-right: solid 1px #999999;
  26. border-bottom: solid 1px #999999;
  27. background: #fafafa;
  28. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dedede), color-stop(1, #ffffff));
  29. background: -ms-linear-gradient(bottom, #dedede, #ffffff);
  30. background: -moz-linear-gradient(center bottom, #dedede 0%, #ffffff 100%);
  31. background: -o-linear-gradient(#ffffff, #dedede);
  32. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dedede', GradientType=0);
  33. -webkit-box-shadow: 0 1px 3px 0 #cccccc;
  34. -moz-box-shadow: 0 1px 3px 0 #cccccc;
  35. box-shadow: 0 1px 3px 0 #cccccc;
  36. padding: 3px 10px;
  37. }
  38. .moka_view button:focus,
  39. .moka_view button:active:focus,
  40. .moka_view button:focus:focus {
  41. outline: 0;
  42. }
  43. .moka_view button:active,
  44. .moka_view button:active:active,
  45. .moka_view button:focus:active {
  46. -webkit-box-shadow: 0 0 3px 0 #cccccc;
  47. -moz-box-shadow: 0 0 3px 0 #cccccc;
  48. box-shadow: 0 0 3px 0 #cccccc;
  49. background: #dedede;
  50. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fafafa), color-stop(1, #dedede));
  51. background: -ms-linear-gradient(bottom, #fafafa, #dedede);
  52. background: -moz-linear-gradient(center bottom, #fafafa 0%, #dedede 100%);
  53. background: -o-linear-gradient(#dedede, #fafafa);
  54. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dedede', endColorstr='#fafafa', GradientType=0);
  55. }