more sr friendly

This commit is contained in:
2018-07-28 12:01:12 +02:00
parent 72011feea9
commit 59e6649a1d
23 changed files with 432 additions and 250 deletions
@@ -4,6 +4,15 @@
font-weight: bold;
}
.card-header {
h1, h2, h3 {
font-size: 1em;
margin: 0;
padding: 0;
font-weight: bold;
}
}
.card {
box-shadow: 0 2px 3px rgba(black, .3);
}
@@ -0,0 +1,19 @@
// this is before the rest of bootstrap to get the right paddings in grid
.sr-list {
@include list-unstyled;
margin-bottom: 0;
> li {
display: inline-block;
&:not(:last-child) {
margin-right: $list-inline-padding;
}
}
&.sr-list-tight {
> li {
display: inline-block;
margin-right: 0;
}
}
}