2014-04-22 14:11:54 -04:00
|
|
|
.panel {
|
|
|
|
border-width: 2px;
|
|
|
|
border-color: $gray-background;
|
2014-04-30 12:15:54 -04:00
|
|
|
@include transition(background-color .3s ease-in-out);
|
2014-04-22 14:11:54 -04:00
|
|
|
|
|
|
|
.panel-heading {
|
|
|
|
background-color: transparent;
|
|
|
|
border-width: 2px;
|
|
|
|
border-color: $gray-background;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3.panel-title {
|
|
|
|
padding: 4px 0px 4px 0px;
|
|
|
|
font-size: 20px;
|
|
|
|
color: $gray-light;
|
|
|
|
color: $gray-darker;
|
|
|
|
border-radius: 3px;
|
|
|
|
|
|
|
|
small {
|
|
|
|
font-size: 14px;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-note {
|
|
|
|
float: right;
|
|
|
|
font-weight: 600;
|
|
|
|
color: $gray-light;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-body {
|
|
|
|
p {
|
|
|
|
font-size: 14px;
|
2014-04-24 15:18:11 -04:00
|
|
|
color: $text-color;
|
|
|
|
}
|
2014-04-30 22:53:17 -04:00
|
|
|
h5 {
|
2014-04-24 15:18:11 -04:00
|
|
|
font-size: 12px;
|
2014-04-22 14:11:54 -04:00
|
|
|
}
|
2014-04-30 22:53:17 -04:00
|
|
|
h4.check {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
2014-04-22 14:11:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-bar {
|
|
|
|
width: 100%;
|
|
|
|
height: 20px;
|
2014-04-30 12:15:54 -04:00
|
|
|
@include transition(background-color .1s linear);
|
2014-04-22 14:11:54 -04:00
|
|
|
}
|
|
|
|
|
2014-04-25 12:45:55 -04:00
|
|
|
&.panel-link {
|
2014-04-25 15:12:21 -04:00
|
|
|
border-bottom-width: 2px;
|
2014-04-25 12:45:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.panel-short {
|
2014-04-25 15:12:21 -04:00
|
|
|
border-bottom-width: 0px;
|
2014-04-25 12:45:55 -04:00
|
|
|
}
|
|
|
|
|
2014-04-23 14:01:42 -04:00
|
|
|
&.panel-link:hover {
|
2014-04-24 13:47:14 -04:00
|
|
|
cursor: pointer;
|
|
|
|
background-color: lighten($gray-background, 8%);
|
2014-04-23 14:01:42 -04:00
|
|
|
}
|
2014-04-29 16:32:38 -04:00
|
|
|
|
|
|
|
&.active {
|
|
|
|
>.panel-heading {
|
|
|
|
border-color: $purple;
|
|
|
|
}
|
|
|
|
|
2014-04-30 22:47:38 -04:00
|
|
|
@include transition(border-color .1s linear);
|
2014-04-29 16:32:38 -04:00
|
|
|
border-color: $purple;
|
|
|
|
|
|
|
|
.panel-bar {
|
2014-04-30 22:47:38 -04:00
|
|
|
@include transition(background-color .1s linear);
|
2014-04-29 16:32:38 -04:00
|
|
|
background-color: $purple;
|
|
|
|
}
|
|
|
|
}
|
2014-04-22 14:11:54 -04:00
|
|
|
}
|