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.

64 lines
958 B

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