diff --git a/Quiz App Master/app.css b/Quiz App Master/app.css index e78aa52..c31d1a0 100644 --- a/Quiz App Master/app.css +++ b/Quiz App Master/app.css @@ -125,3 +125,50 @@ input { input::placeholder { color: #aaa; } +.end-container { + text-align: center; + padding: 2rem; + max-width: 600px; + margin: 0 auto; +} + +.score-container { + background: #f8f9fa; + border-radius: 10px; + padding: 2rem; + margin: 2rem 0; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); +} + +.score-text { + font-size: 1.5rem; + font-weight: bold; + margin-bottom: 1rem; +} + +.correct-answers, .percentage { + font-size: 1.2rem; + margin: 0.5rem 0; +} + +#feedbackMessage { + font-size: 1.3rem; + margin-top: 1.5rem; + color: #2c3e50; + font-weight: bold; +} + +button { + background: #3498db; + color: white; + border: none; + padding: 0.8rem 1.5rem; + font-size: 1.1rem; + border-radius: 5px; + cursor: pointer; + transition: background 0.3s; +} + +button:hover { + background: #2980b9; +} diff --git a/Quiz App Master/end.html b/Quiz App Master/end.html index 426d7d5..aef424e 100644 --- a/Quiz App Master/end.html +++ b/Quiz App Master/end.html @@ -4,34 +4,115 @@ -