demo.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. * {
  2. box-sizing: border-box;
  3. -moz-box-sizing: border-box; }
  4. body {
  5. margin: 20px;
  6. font-size: 14px;
  7. font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  8. color: #555; }
  9. .hide {
  10. display: none; }
  11. pre {
  12. margin: 0 !important;
  13. display: inline-block; }
  14. .token.operator,
  15. .token.entity,
  16. .token.url,
  17. .language-css .token.string,
  18. .style .token.string,
  19. .token.variable {
  20. background: none; }
  21. input, button {
  22. height: 35px;
  23. margin: 0;
  24. padding: 6px 12px;
  25. border-radius: 2px;
  26. font-family: inherit;
  27. font-size: 100%;
  28. color: inherit; }
  29. input[disabled], button[disabled] {
  30. background-color: #eee; }
  31. input, select {
  32. border: 1px solid #CCC;
  33. width: 250px; }
  34. ::-webkit-input-placeholder {
  35. color: #BBB; }
  36. ::-moz-placeholder {
  37. /* Firefox 19+ */
  38. color: #BBB;
  39. opacity: 1; }
  40. :-ms-input-placeholder {
  41. color: #BBB; }
  42. button {
  43. color: #FFF;
  44. background-color: #428BCA;
  45. border: 1px solid #357EBD; }
  46. button:hover {
  47. background-color: #3276B1;
  48. border-color: #285E8E;
  49. cursor: pointer; }
  50. #result {
  51. margin-bottom: 100px; }