global.css 926 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. html,
  2. body {
  3. position: relative;
  4. width: 100%;
  5. height: 100%;
  6. }
  7. body {
  8. color: #333;
  9. margin: 0;
  10. padding: 8px;
  11. box-sizing: border-box;
  12. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
  13. Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  14. }
  15. a {
  16. color: rgb(0, 100, 200);
  17. text-decoration: none;
  18. }
  19. a:hover {
  20. text-decoration: underline;
  21. }
  22. a:visited {
  23. color: rgb(0, 80, 160);
  24. }
  25. label {
  26. display: block;
  27. }
  28. input,
  29. button,
  30. select,
  31. textarea {
  32. font-family: inherit;
  33. font-size: inherit;
  34. -webkit-padding: 0.4em 0;
  35. padding: 0.4em;
  36. margin: 0 0 0.5em 0;
  37. box-sizing: border-box;
  38. border: 1px solid #ccc;
  39. border-radius: 2px;
  40. }
  41. input:disabled {
  42. color: #ccc;
  43. }
  44. button {
  45. color: #333;
  46. background-color: #f4f4f4;
  47. outline: none;
  48. }
  49. button:disabled {
  50. color: #999;
  51. }
  52. button:not(:disabled):active {
  53. background-color: #ddd;
  54. }
  55. button:focus {
  56. border-color: #666;
  57. }