Fix background colours on big numbers without links

This commit is contained in:
Chris Hill-Scott
2016-06-22 13:28:32 +01:00
parent a385c2ff76
commit 0c31931876
3 changed files with 15 additions and 4 deletions

View File

@@ -45,7 +45,8 @@
.big-number {
padding: $gutter-half;
position: relative;
cursor: pointer;
background: $black;
color: $white;
}
.big-number-label {
@@ -69,7 +70,13 @@
margin-bottom: 5px;
&:hover {
color: $light-blue-25;
.big-number {
color: $light-blue-25;
}
}
&:active,
@@ -77,6 +84,10 @@
outline: 3px solid $yellow;
}
.big-number {
background: transparent;
}
.big-number-label {
text-decoration: underline;
}