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.
67 lines
1.2 KiB
67 lines
1.2 KiB
6 months ago
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
background-color: #f4f7f6;
|
||
|
color: #333;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
height: 100vh;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.results-container {
|
||
|
background-color: #fff;
|
||
|
padding: 30px;
|
||
|
border-radius: 10px;
|
||
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||
|
max-width: 400px;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.results-container h1 {
|
||
|
font-size: 2.5em;
|
||
|
margin-bottom: 20px;
|
||
|
color: #4caf50;
|
||
|
}
|
||
|
|
||
|
.results-container p {
|
||
|
font-size: 1.5em;
|
||
|
margin: 10px 0;
|
||
|
}
|
||
|
|
||
|
.results-container .retry-button {
|
||
|
display: inline-block;
|
||
|
padding: 12px 24px;
|
||
|
margin-top: 20px;
|
||
|
font-size: 1.2em;
|
||
|
color: #fff;
|
||
|
background-color: #2196f3;
|
||
|
text-decoration: none;
|
||
|
border-radius: 5px;
|
||
|
transition: background-color 0.3s ease;
|
||
|
}
|
||
|
|
||
|
.results-container .retry-button:hover {
|
||
|
background-color: #1976d2;
|
||
|
}
|
||
|
|
||
|
.results-container .comments {
|
||
|
font-size: 1.2em;
|
||
|
margin: 20px 0;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
.results-container .excellent {
|
||
|
color: #4caf50;
|
||
|
}
|
||
|
|
||
|
.results-container .good {
|
||
|
color: #ff9800;
|
||
|
}
|
||
|
|
||
|
.results-container .try-again {
|
||
|
color: #f44336;
|
||
|
}
|