hubl/src/styles/job-offers.scss

135 lines
2.5 KiB
SCSS
Raw Normal View History

2018-12-11 13:29:59 +00:00
#offers-list {
@extend .grid-layer;
2018-12-11 13:29:59 +00:00
> sib-form {
grid-column-start: start;
grid-column-end: middle;
grid-row-start: start;
grid-row-end: middle;
}
2018-12-16 00:28:51 +00:00
2018-12-11 13:29:59 +00:00
> div {
grid-column-start: start;
grid-column-end: end;
grid-row-start: middle;
grid-row-end: end;
2018-12-16 00:28:51 +00:00
2018-12-11 13:29:59 +00:00
&:first-of-type {
margin-top: 5rem;
2018-12-11 13:29:59 +00:00
}
2018-12-16 00:28:51 +00:00
2018-12-11 13:29:59 +00:00
> sib-display {
2018-12-12 10:13:03 +00:00
@extend %frame;
2018-12-11 13:29:59 +00:00
display: block;
font-size: 1.5rem;
margin: 1.7rem 0;
padding: 3.4rem;
2018-12-11 13:29:59 +00:00
/*&:nth-child(odd) {
background-color: $color-anti-flash-white;
2018-12-11 13:29:59 +00:00
}*/
[name='user-thumb'] {
align-items: center;
display: flex;
margin: -0.25em;
> * {
margin: 0.25em;
}
[name='author.first_name'] {
color: $color-quartz;
font-weight: 600;
}
sib-multiple[name$='groups'] {
display: flex;
label {
display: none;
}
> * {
@extend %group;
}
}
sib-display-img {
background-color: $color-white;
border-radius: 50%;
height: 4.25rem;
overflow: hidden;
position: relative;
width: 4.25rem;
img {
height: 100%;
left: 0;
object-fit: cover;
position: absolute;
top: 0;
width: 100%;
}
}
}
[name='creationDate'] {
display: block;
margin-bottom: 0.7rem;
margin-top: 2rem;
}
[name='title'] {
2018-12-13 16:25:10 +00:00
@extend h3;
2018-12-12 10:13:03 +00:00
display: block;
2018-12-13 16:25:10 +00:00
font-weight: bold;
line-height: 19px;
2018-12-11 13:29:59 +00:00
}
2018-12-16 00:28:51 +00:00
[name='description'] {
display: block;
line-height: 1.6;
margin-bottom: 1.6rem;
2018-12-11 13:29:59 +00:00
}
[name='skills'] {
label {
display: none;
}
}
[name='send'] {
color: $color-majorelle-blue;
font-size: 1.3rem;
float: right;
> sib-link {
cursor: pointer;
@include icon('speech');
&::before {
font-size: 1.5rem;
margin-right: 1.2rem;
}
}
}
[name='status'] {
float: right;
display: flex;
align-items: center;
margin: -0.25em;
> * {
margin: 0.25em;
}
strong {
@extend %status-open;
}
}
2018-12-11 13:29:59 +00:00
}
}
2018-12-12 10:13:03 +00:00
}