38 lines
534 B
CSS
38 lines
534 B
CSS
.btn-col {
|
|
width: 90%;
|
|
white-space: normal;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.footer {
|
|
font-size: large;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#question, #answer-buttons{
|
|
font-size: large;
|
|
font-weight: 400;
|
|
text-align: center;
|
|
}
|
|
|
|
.btn-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(1, auto);
|
|
gap: 10px;
|
|
}
|
|
|
|
.controls {
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.hide {
|
|
display: none;
|
|
}
|
|
|
|
.results {
|
|
margin: 5px;
|
|
padding: 5px 10px;
|
|
outline: none;
|
|
}
|