forked from ulovliglogning/ulovliglogning.dk
32 lines
540 B
SCSS
32 lines
540 B
SCSS
|
.qa {
|
||
|
display: flex;
|
||
|
align-items: flex-start;
|
||
|
width: 100%;
|
||
|
justify-content: center;
|
||
|
padding: 2rem 0;
|
||
|
|
||
|
.qa--question,
|
||
|
.qa--anwser {
|
||
|
flex-direction: column;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
.qa--question {
|
||
|
max-width: 20rem;
|
||
|
width: 20rem;
|
||
|
background-image: url(/assets/img/question.svg);
|
||
|
background-position: bottom right;
|
||
|
background-repeat: no-repeat;
|
||
|
padding-bottom: 35px;
|
||
|
|
||
|
h3 {
|
||
|
font-size: 1.3rem;
|
||
|
text-align: right;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
.qa--anwser {
|
||
|
padding-left: 25px;
|
||
|
}
|
||
|
|
||
|
}
|