40 lines
569 B
SCSS
40 lines
569 B
SCSS
@import "/src/styles/helpers";
|
|
|
|
.section {
|
|
@include darkSection;
|
|
@include regularFont;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
padding-top: 2em;
|
|
|
|
p {
|
|
text-align: justify;
|
|
text-justify: distribute-all-lines;
|
|
margin: 0 auto 0 auto;
|
|
width: 42em;
|
|
max-width: 70vw;
|
|
line-height: 1.7;
|
|
}
|
|
}
|
|
|
|
.job {
|
|
@include lightSection;
|
|
width: 100%;
|
|
padding: 1em;
|
|
margin: auto 1em;
|
|
|
|
.largerText {
|
|
font-size: 1.3em;
|
|
}
|
|
|
|
.redText {
|
|
color: $red;
|
|
}
|
|
|
|
.industry {
|
|
margin-top: 12px;
|
|
text-align: right;
|
|
}
|
|
} |