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

62 lines
968 B
SCSS
Raw Normal View History

@import "colors";
@import "constants";
@import "mixins";
.procedure-list {
.procedure-logo-link {
background-image: none;
}
.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%;
}
2017-07-03 16:29:29 +02:00
.procedure-stats {
list-style-type: none;
padding-inline-start: 0;
li {
min-height: 36px;
width: 90px;
2017-08-30 11:12:58 +02:00
position: relative;
border-left: 1px solid $border-grey;
&:first-child {
border-left: none;
}
&:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.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;
}
}
}