You are here

bp-quicklinks.css in Bootstrap Paragraphs 8.2

The CSS file for Bootstrap Paragraphs Quicklinks module.

Compiled from the SCSS file of the same name.

File

modules/bp_quicklinks/css/bp-quicklinks.css
View source
  1. /**
  2. * @file
  3. * The CSS file for Bootstrap Paragraphs Quicklinks module.
  4. *
  5. * Compiled from the SCSS file of the same name.
  6. */
  7. .quicklinks {
  8. align-items: stretch;
  9. display: flex;
  10. flex-wrap: wrap;
  11. justify-content: space-around;
  12. list-style: none;
  13. margin: 0;
  14. padding: 0;
  15. }
  16. .quicklinks .quicklink {
  17. margin-bottom: 1rem;
  18. padding: 3rem 2rem;
  19. }
  20. .quicklinks .quicklink a {
  21. background: #f8f9fa;
  22. padding: 3rem 2rem;
  23. transition: all 0.25s ease-in-out;
  24. }
  25. .quicklinks .quicklink a:hover {
  26. background: #6c757d;
  27. transition: all 0.25s ease-in-out;
  28. }