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

48 lines
794 B
SCSS
Raw Normal View History

2024-11-05 19:02:31 +01:00
@import 'colors';
@import 'constants';
@import 'mixins';
.procedure-list {
.procedure-logo-link {
background-image: none;
}
2024-12-09 10:02:21 +01:00
> li {
border-top: 1px solid var(--border-default-grey);
}
.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-stats {
list-style-type: none;
padding-inline-start: 0;
li {
min-height: 36px;
min-width: 6em;
color: var(--text-default-grey);
2017-08-30 11:12:58 +02:00
position: relative;
&:first-child {
border-left: none;
}
&:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.notifications {
top: 3px;
right: 18px;
}
2017-08-30 11:12:58 +02:00
}
}
}