29 lines
522 B
SCSS
29 lines
522 B
SCSS
.question-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
grid-gap: 1em;
|
|
|
|
@media only screen and (max-width: 1200px) {
|
|
grid-template-columns: auto;
|
|
}
|
|
|
|
.question {
|
|
list-style-type: none;
|
|
padding: 10px 15px;
|
|
margin: 0;
|
|
border: 1px solid #bdbdbd;
|
|
|
|
li {
|
|
|
|
&:first-child {
|
|
padding-bottom: 5px;
|
|
|
|
h2 {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|