demarches-normaliennes/app/assets/stylesheets/procedure_list.scss

84 lines
1.3 KiB
SCSS
Raw Normal View History

@import "colors";
@import "constants";
@import "mixins";
.procedure-list {
.procedure-item {
border-bottom: 1px solid $border-grey;
&:last-child {
border-bottom: none;
}
a {
@include vertical-padding(24px);
color: $black;
width: 100%;
&:hover {
background-color: $light-grey;
.procedure-title {
text-decoration: underline;
}
}
}
}
.procedure-logo {
2017-12-04 11:29:22 +01:00
@include ie-compatible-background-image();
height: 93px;
width: 93px;
margin-right: 3 * $default-spacer;
background-position: 95% 50%;
}
.procedure-title {
min-height: 40px;
font-size: 20px;
margin-bottom: 16px;
}
2017-07-03 16:29:29 +02:00
.procedure-status {
margin-left: auto;
}
.procedure-stats {
li {
min-height: 36px;
border-left: 1px solid $border-grey;
width: 90px;
2017-08-30 11:12:58 +02:00
position: relative;
&:hover {
background-color: rgba(0, 0, 0, 0.05);
}
&:last-child {
border-right: 1px solid $border-grey;
}
.stats-number,
.stats-legend {
text-align: center;
}
.stats-number {
font-size: 14px;
font-weight: bold;
}
.stats-legend {
font-size: 12px;
2020-06-11 14:33:15 +02:00
color: $dark-grey;
}
}
2017-08-30 11:12:58 +02:00
.notifications {
top: 3px;
right: 18px;
}
}
}