#3591 Added media queries to the summary numbers to enable responsiveness

pull/3810/head
Janneke Janssen 2017-12-01 16:11:38 +01:00
rodzic 7c54c14709
commit 8b7510e16b
1 zmienionych plików z 28 dodań i 4 usunięć

Wyświetl plik

@ -48,11 +48,23 @@ header {
li {
@include column(4);
margin-bottom: 2em;
}
&:before {
opacity: 0.2;
font-size: 6em;
float: left;
li:before {
opacity: 0.2;
font-size: 6em;
float: left;
@media screen and (max-width: $breakpoint-desktop-large) {
font-size: 5em;
}
@media screen and (max-width: $breakpoint-desktop-small) {
font-size: 4.5em;
}
@media screen and (max-width: $breakpoint-mobile) {
font-size: 4em;
}
}
@ -69,6 +81,18 @@ header {
font-size: 4em;
line-height: 1em;
font-weight: 300;
@media screen and (max-width: $breakpoint-desktop-large) {
font-size: 3em;
}
@media screen and (max-width: $breakpoint-desktop-small) {
font-size: 2.5em;
}
@media screen and (max-width: $breakpoint-mobile) {
font-size: 2em;
}
}
}