You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

global.css 890B

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