Skip to content

Commit e162c81

Browse files
authored
chore: added new classes to buttons
1 parent 9a83202 commit e162c81

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

quiz.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ <h1>8values</h1>
2121
<hr>
2222
<h2 style="text-align:center;" id="question-number">Loading...</h2>
2323
<p class="question" id="question-text"></p>
24-
<button class="button" onclick="next_question( 1.0)" style="background-color: #1b5e20;">Strongly Agree</button> <br>
25-
<button class="button" onclick="next_question( 0.5)" style="background-color: #4caf50;">Agree</button> <br>
26-
<button class="button" onclick="next_question( 0.0)" style="background-color: #bbbbbb;">Neutral/Unsure</button> <br>
27-
<button class="button" onclick="next_question(-0.5)" style="background-color: #f44336;">Disagree</button> <br>
28-
<button class="button" onclick="next_question(-1.0)" style="background-color: #b71c1c;">Strongly Disagree</button> <br>
24+
<button class="button stronglyAgree" onclick="next_question( 1.0)">Strongly Agree</button> <br>
25+
<button class="button agree" onclick="next_question( 0.5)">Agree</button> <br>
26+
<button class="button neutral" onclick="next_question( 0.0)">Neutral/Unsure</button> <br>
27+
<button class="button disagree" onclick="next_question(-0.5)">Disagree</button> <br>
28+
<button class="button stronglyDisagree" onclick="next_question(-1.0)">Strongly Disagree</button> <br>
2929
<button class="small_button" onclick="prev_question()" id="back_button">Back</button>
3030
<button class="small_button_off" id="back_button_off">Back</button><br>
3131

0 commit comments

Comments
 (0)