global.css 921 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  13. }
  14. a {
  15. color: rgb(0, 100, 200);
  16. text-decoration: none;
  17. }
  18. a:hover {
  19. text-decoration: underline;
  20. }
  21. a:visited {
  22. color: rgb(0, 80, 160);
  23. }
  24. label {
  25. display: block;
  26. }
  27. input,
  28. button,
  29. select,
  30. textarea {
  31. font-family: inherit;
  32. font-size: inherit;
  33. -webkit-padding: 0.4em 0;
  34. padding: 0.4em;
  35. margin: 0 0 0.5em 0;
  36. box-sizing: border-box;
  37. border: 1px solid #ccc;
  38. border-radius: 2px;
  39. }
  40. input:disabled {
  41. color: #ccc;
  42. }
  43. button {
  44. color: #333;
  45. background-color: #f4f4f4;
  46. outline: none;
  47. }
  48. button:disabled {
  49. color: #999;
  50. }
  51. button:not(:disabled):active {
  52. background-color: #ddd;
  53. }
  54. button:focus {
  55. border-color: #666;
  56. }