Advertisement
Dimitar46

site.css

Apr 7th, 2024
582
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.63 KB | None | 0 0
  1. html {
  2.   font-size: 14px;
  3. }
  4.  
  5. @media (min-width: 768px) {
  6.   html {
  7.     font-size: 16px;
  8.   }
  9. }
  10.  
  11. .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  12.   box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
  13. }
  14.  
  15. html {
  16.   position: relative;
  17.   min-height: 100%;
  18. }
  19.  
  20. body {
  21.   margin-bottom: 60px;
  22. }
  23. .btn-primary {
  24.     margin-right: 10px; /* Adjust the value as needed */
  25. }
  26.  
  27. .btn-secondary {
  28.     margin-left: 10px; /* Adjust the value as needed */
  29. }
  30. .btn-group {
  31.     display: flex;
  32.     justify-content: space-between;
  33.     margin-top: 10px; /* Adjust the value as needed */
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement