branding.css 504 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * @file
  3. * This file is used to style the branding block.
  4. */
  5. .block-system-branding-block {
  6. flex: 0 1 40%;
  7. }
  8. @media screen and (min-width: 48em) {
  9. .block-system-branding-block {
  10. flex: 0 1 220px;
  11. margin: 2.5rem 0;
  12. text-align: left;
  13. }
  14. }
  15. .site-logo {
  16. display: inline-block;
  17. width: 100%;
  18. max-width: 205px;
  19. background-color: inherit;
  20. }
  21. .site-logo:hover,
  22. .site-logo:focus {
  23. background-color: inherit;
  24. }
  25. .site-logo svg {
  26. width: 100%;
  27. max-width: 205px;
  28. height: auto;
  29. }