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

82 lines
1.4 KiB
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 {
2024-12-18 15:12:58 +00:00
top: 10px;
left: 50%;
margin-left: 15px;
}
}
}
}
.procedure-list-item {
.fr-btn--tertiary {
a {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
}
.notifications {
position: absolute;
width: 8px;
height: 8px;
background-color: red;
border-radius: 50%;
top: 15px;
right: 35%;
}
.center.fr-text--bold {
display: flex;
align-items: center;
justify-content: center;
&::after {
content: '';
display: inline-block;
width: 30px;
}
2017-08-30 11:12:58 +02:00
}
}
}