2016-04-13 12:50:28 +01:00
|
|
|
.pill {
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
2016-04-18 11:10:47 +01:00
|
|
|
a,
|
|
|
|
|
span {
|
2016-04-13 12:50:28 +01:00
|
|
|
display: block;
|
2016-06-08 15:15:59 +01:00
|
|
|
padding: 10px;
|
2016-04-13 12:50:28 +01:00
|
|
|
flex-grow: 1;
|
2016-06-08 15:15:59 +01:00
|
|
|
text-align: left;
|
2016-04-13 12:50:28 +01:00
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
2016-06-08 15:41:02 +01:00
|
|
|
$background: $link-colour;
|
|
|
|
|
background: $background;
|
|
|
|
|
color: $white;
|
|
|
|
|
border: 2px solid $background;
|
2016-04-13 12:50:28 +01:00
|
|
|
position: relative;
|
2016-06-08 15:15:59 +01:00
|
|
|
text-decoration: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
.pill-label {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
2016-04-13 12:50:28 +01:00
|
|
|
|
2016-06-08 15:41:02 +01:00
|
|
|
&:link,
|
|
|
|
|
&:visited {
|
|
|
|
|
color: $white;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-13 12:50:28 +01:00
|
|
|
&:hover {
|
2016-06-08 15:41:02 +01:00
|
|
|
color: $light-blue-25;
|
2016-04-13 12:50:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
|
&:focus {
|
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
span {
|
2016-06-08 15:41:02 +01:00
|
|
|
border: 2px solid $black;
|
|
|
|
|
outline: 1px solid rgba($white, 0.1);
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1000;
|
2016-04-13 12:50:28 +01:00
|
|
|
color: $text-colour;
|
|
|
|
|
}
|
2016-04-18 11:10:47 +01:00
|
|
|
}
|