call-to-action.css 387 B

1234567891011121314151617181920212223242526
  1. .cta {
  2. display: grid;
  3. grid-template-areas: "title" "text" "button";
  4. justify-items: stretch;
  5. background-color: rgb(211, 157, 70);
  6. }
  7. .cta__banner {
  8. border-bottom: solid 1px black;
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. padding: 0.5em 0 1em;
  13. }
  14. .cta__banner-element {
  15. margin-right: 0.2em;
  16. }
  17. .cta__text {
  18. padding: 0 0.5em 0;
  19. }
  20. .cta__button {
  21. }