demarches-normaliennes/app/assets/stylesheets/new_design/procedures_show.scss

94 lines
1.4 KiB
SCSS
Raw Normal View History

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
.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;
}
.label {
width: 110px;
text-align: center;
}
.button {
width: 180px;
text-align: center;
}
}
h2 {
font-size: 20px;
font-weight: bold;
text-align: center;
margin: 60px 0;
}
2017-07-11 16:09:03 +02:00
}