Plan stuff. Log stuff.
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.

62 lines
877 B

4 years ago
  1. html, body {
  2. position: relative;
  3. width: 100%;
  4. height: 100%;
  5. }
  6. body {
  7. background-color: #111;
  8. color: #999;
  9. margin: 0;
  10. padding: 0;
  11. box-sizing: border-box;
  12. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  13. font-size: 1.5em;
  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, button, select, textarea {
  29. font-family: inherit;
  30. font-size: inherit;
  31. padding: 0.4em;
  32. margin: 0 0 0.5em 0;
  33. box-sizing: border-box;
  34. border: 1px solid #ccc;
  35. border-radius: 2px;
  36. }
  37. input:disabled {
  38. color: #ccc;
  39. }
  40. input[type="range"] {
  41. height: 0;
  42. }
  43. button {
  44. background-color: #f4f4f4;
  45. outline: none;
  46. }
  47. button:active {
  48. background-color: #ddd;
  49. }
  50. button:focus {
  51. border-color: #666;
  52. }