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

site.css 734 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. html, body {
  2. font-size: 14px;
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. }
  7. header {
  8. }
  9. main {
  10. flex: 1;
  11. overflow: auto;
  12. }
  13. footer {
  14. bottom: 0;
  15. width: 100%;
  16. white-space: nowrap;
  17. line-height: 60px;
  18. }
  19. @media (min-width: 768px) {
  20. html {
  21. font-size: 16px;
  22. }
  23. }
  24. .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  25. box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
  26. }
  27. #scroll-container {
  28. flex: 1;
  29. overflow-y: scroll;
  30. }
  31. #output-container .content {
  32. white-space: break-spaces;
  33. }
  34. .slider-container > .slider {
  35. width: 100%;
  36. }
  37. .slider-container > label {
  38. width: 50px;
  39. text-align: center;
  40. }