2014-06-06 12:47:52 -04:00
|
|
|
.card {
|
|
|
|
background-color: white;
|
2017-09-25 11:56:22 -04:00
|
|
|
border-radius: @border-radius-base;
|
2017-09-25 12:12:31 -04:00
|
|
|
box-shadow: @card-box-shadow;
|
2014-06-06 12:47:52 -04:00
|
|
|
padding: @line-height-computed;
|
2014-06-09 03:54:14 -04:00
|
|
|
.page-header {
|
|
|
|
margin: 0 0 1.5625rem;
|
2014-07-25 09:33:46 -04:00
|
|
|
h1, h2, h3 {
|
2014-06-09 05:19:02 -04:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
2014-06-09 03:54:14 -04:00
|
|
|
}
|
2014-06-09 05:56:26 -04:00
|
|
|
> .container-fluid {
|
|
|
|
padding: 0;
|
|
|
|
}
|
2014-10-14 10:46:44 -04:00
|
|
|
|
|
|
|
.card-header {
|
|
|
|
border-bottom: 1px solid @gray-lighter;
|
|
|
|
padding-bottom: @line-height-computed;
|
|
|
|
margin-bottom: @line-height-computed;
|
|
|
|
h2 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
2014-06-06 12:47:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.card-thin {
|
|
|
|
padding: @line-height-computed / 2
|
2014-10-14 10:46:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.card-group {
|
|
|
|
.card {
|
|
|
|
margin: @line-height-computed -15px 0 -15px;
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
|
|
&.card-highlighted {
|
|
|
|
// Bring card in front of other cards
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
// Make it taller and card like
|
|
|
|
margin-top: 0;
|
2017-09-25 11:56:22 -04:00
|
|
|
border-radius: @border-radius-base;
|
2014-10-14 10:46:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.card-first {
|
2017-09-25 11:56:22 -04:00
|
|
|
border-top-left-radius: @border-radius-base;
|
|
|
|
border-bottom-left-radius: @border-radius-base;
|
2014-10-14 10:46:44 -04:00
|
|
|
}
|
|
|
|
&.card-last {
|
2017-09-25 11:56:22 -04:00
|
|
|
border-top-right-radius: @border-radius-base;
|
|
|
|
border-bottom-right-radius: @border-radius-base;
|
2014-10-14 10:46:44 -04:00
|
|
|
}
|
|
|
|
}
|
2014-06-06 12:47:52 -04:00
|
|
|
}
|