index.css 654 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. html,
  2. body,
  3. #root,
  4. .App {
  5. height: 100%;
  6. background-color: #343a40;
  7. font-size: 0.8rem;
  8. }
  9. body {
  10. margin: 0;
  11. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
  12. "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
  13. sans-serif;
  14. -webkit-font-smoothing: antialiased;
  15. -moz-osx-font-smoothing: grayscale;
  16. }
  17. a:link,
  18. a:active,
  19. a:visited,
  20. a:hover {
  21. color: #001414;
  22. text-decoration: none !important;
  23. }
  24. h3 {
  25. font-size: 1rem;
  26. }
  27. .box {
  28. color: white;
  29. margin: 5px;
  30. padding: 15px;
  31. background-color: teal;
  32. text-align: center;
  33. }
  34. .title {
  35. position: fixed;
  36. right: 10px;
  37. bottom: 0px;
  38. }