add CTA's

This commit is contained in:
Benedikt Rötsch
2017-09-27 11:37:37 +02:00
committed by Benedikt Rötsch
parent ceca213bfe
commit 1875c99a4c
6 changed files with 36 additions and 3 deletions

View File

@@ -148,3 +148,14 @@ body {
}
}
}
.cta {
display: inline-block;
box-sizing: border-box;
min-width: 200px;
padding: 0.5em 2em;
color: var(--cta-color);
background: var(--cta-bg);
border-radius: var(--cta-radius);
text-align: center;
}

View File

@@ -31,6 +31,7 @@
@media (--breakpoint-desktop) {
flex: 1 0 auto;
min-height: 90px;
}
}

View File

@@ -20,4 +20,8 @@
--color-course-active: #536171;
--card-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, .45);
--cta-color: #fff;
--cta-bg: #5b9fef;
--cta-radius: 3px;
}