site.css 341 B

12345678910111213141516171819202122
  1. html {
  2. font-size: 14px;
  3. }
  4. @media (min-width: 768px) {
  5. html {
  6. font-size: 16px;
  7. }
  8. }
  9. .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  10. box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
  11. }
  12. html {
  13. position: relative;
  14. min-height: 100%;
  15. }
  16. body {
  17. margin-bottom: 60px;
  18. }