2017-07-11 16:09:03 +02:00
|
|
|
@import "colors";
|
|
|
|
@import "common";
|
|
|
|
@import "constants";
|
|
|
|
|
|
|
|
#procedure-show {
|
2017-07-18 15:12:55 +02:00
|
|
|
.procedure-logo {
|
|
|
|
margin-right: $default-padding;
|
|
|
|
}
|
2017-07-11 16:09:03 +02:00
|
|
|
|
2017-07-18 15:12:55 +02:00
|
|
|
h1 {
|
|
|
|
color: $black;
|
|
|
|
font-size: 22px;
|
|
|
|
margin-bottom: 2 * $default-padding;
|
|
|
|
}
|
2017-07-11 16:09:03 +02:00
|
|
|
|
2017-07-11 15:40:09 +02:00
|
|
|
.dossiers-table {
|
|
|
|
margin: (2 * $default-padding) auto;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
tr {
|
|
|
|
border-bottom: 1px solid $border-grey;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $light-grey;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
&:hover {
|
|
|
|
background: #FFFFFF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
font-weight: bold;
|
|
|
|
padding: (1.5 * $default-padding) 2px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.number-col {
|
|
|
|
width: 130px;
|
|
|
|
|
|
|
|
a::before {
|
|
|
|
content: "";
|
|
|
|
background-image: image-url("icons/folder.svg");
|
|
|
|
display: inline-block;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
margin: 0 $default-spacer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.big-link {
|
|
|
|
color: $black;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: (1.5 * $default-padding) 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-col {
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.follow-col {
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
|
2017-07-11 15:43:20 +02:00
|
|
|
.label {
|
|
|
|
width: 110px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2017-07-11 15:58:31 +02:00
|
|
|
|
|
|
|
.button {
|
|
|
|
width: 180px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2017-07-11 15:43:20 +02:00
|
|
|
}
|
|
|
|
|
2017-07-11 15:40:09 +02:00
|
|
|
h2 {
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
margin: 60px 0;
|
|
|
|
}
|
2017-07-11 16:09:03 +02:00
|
|
|
}
|