ETHReport/components/interviews/singleInterview/style.scss

62 lines
1.0 KiB
SCSS
Raw Normal View History

@import './assets/styles/global.scss';
.single-interview {
2018-07-17 13:07:27 +00:00
position: relative;
.number {
2018-07-17 13:07:27 +00:00
@include hasRedUnderline;
font-family: $secondary-font;
font-size: calculateRem(100);
line-height: 1;
color: $blue-light;
position: absolute;
top: 0;
left: 0;
2018-07-17 14:23:38 +00:00
z-index: -1;
2018-07-17 13:07:27 +00:00
&::before {
bottom: calculateRem(17);
z-index: 0;
}
@media (min-width: $desktop) {
left: calculateRem(-110);
}
}
2018-07-13 09:11:32 +00:00
.name {
color: white;
2018-07-17 13:07:27 +00:00
font-size: calculateRem(30);
padding-top: calculateRem(56);
margin-bottom: calculateRem(32);
line-height: 1em;
}
.qa-block {
margin-bottom: calculateRem(48);
2018-07-13 09:11:32 +00:00
}
.question {
2018-07-17 13:07:27 +00:00
font-size: calculateRem(18);
2018-07-13 09:11:32 +00:00
color: white;
2018-07-17 13:07:27 +00:00
margin-bottom: calculateRem(16);
2018-07-13 09:11:32 +00:00
}
.answer {
color: #ddd;
2018-07-18 10:27:38 +00:00
font-size: calculateRem(15);
2018-07-13 09:11:32 +00:00
2018-07-17 13:07:27 +00:00
p {
padding-left: calculateRem(16);
position: relative;
2018-07-17 13:07:27 +00:00
&::before {
content: '\00B7';
position: absolute;
left: 0;
top: 0;
}
}
}
}