47 lines
638 B
CSS
47 lines
638 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f0f8ff;
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.container {
|
|
margin-top: 50px;
|
|
}
|
|
|
|
h1 {
|
|
color: #333;
|
|
}
|
|
|
|
button {
|
|
padding: 10px 20px;
|
|
margin: 5px;
|
|
border: none;
|
|
border-radius: 8px;
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #45a049;
|
|
}
|
|
|
|
input {
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
width: 150px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.question-box {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.score {
|
|
margin-top: 20px;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
} |