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 480 B

12345678910111213141516171819202122232425262728293031323334
  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. }