diff --git a/css/style.css b/css/style.css index 1c4a39f..30cbe4c 100644 --- a/css/style.css +++ b/css/style.css @@ -5,3 +5,11 @@ .top-buffer{     margin-top: 30px; } +.answer{ + padding: 15px 20px; + border-radius: 10px; + border: 1px solid #bbb; +} +.answer:hover{ + cursor: pointer; +} diff --git a/index.html b/index.html index 21ed3e3..7c79476 100644 --- a/index.html +++ b/index.html @@ -90,7 +90,57 @@
-

Work hard bro u will get it

+ +
+
+

+
+ +
+

+
+
+

Legend:

+
+ +

Answered

+
+
+ +

Unanswered

+
+
+
+
+ +
+

Question:

+
+
+
+

{{quiz.activeQuestion+1 + ". " + quiz.dataServices.quizQuestions[quiz.activeQuestion].text}}

+
+
+
+
+

+ {{answer.answer}} +

+
+
+ +
+
+
diff --git a/js/controllers/quiz.js b/js/controllers/quiz.js index 866e19a..03a6c9a 100644 --- a/js/controllers/quiz.js +++ b/js/controllers/quiz.js @@ -11,7 +11,13 @@ var vm = this; vm.quizMetrics = quizMetrics; - vm.dataServices = dataServices; + vm.dataServices = DataServices; + vm.questionAnswered = questionAnswered; + vm.activeQuestion = 0; + + function questionAnswered () { + + } } }) ();