You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
706 B
42 lines
706 B
@import url(./style.css); /* Import de style.css */
|
|
|
|
h2{
|
|
text-align: center;
|
|
font-size: 2em;
|
|
margin-top: 2em;
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
.quizCard {
|
|
background: var(--main-dark-gradient);
|
|
border-radius: 15px;
|
|
padding: 1em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.quizCard img {
|
|
border-radius: 15px 15px 0 0;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.quizCard h3 {
|
|
margin: 1em 0 0;
|
|
font-size: 1.5em;
|
|
text-align: center;
|
|
}
|
|
|
|
.quizCard ul {
|
|
display: flex;
|
|
justify-content: center;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 1em 0 0;
|
|
}
|
|
|
|
.quizCard ul li {
|
|
margin: 0 0.5em;
|
|
} |