You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
490 B

  1. .landing-strip {
  2. background: rgba(darken($ui-base-color, 7%), 0.8);
  3. color: $ui-primary-color;
  4. font-weight: 400;
  5. padding: 14px;
  6. border-radius: 4px;
  7. margin-bottom: 20px;
  8. display: flex;
  9. align-items: center;
  10. strong,
  11. a {
  12. font-weight: 500;
  13. }
  14. a {
  15. color: inherit;
  16. text-decoration: underline;
  17. }
  18. .logo {
  19. width: 30px;
  20. height: 30px;
  21. flex: 0 0 auto;
  22. margin-right: 15px;
  23. }
  24. @media screen and (max-width: 740px) {
  25. margin-bottom: 0;
  26. }
  27. }