This commit is contained in:
Ross
2021-08-17 19:31:02 +01:00
parent cee1e8a35a
commit ab4ba3c087
2 changed files with 18 additions and 6 deletions
+7 -1
View File
@@ -198,8 +198,14 @@ button a {
padding: 20px
}
#full-question-list {
counter-reset: question-list; /* Set a counter named 'section', and its initial value is 0. */
}
#full-question-list li{
padding-bottom: 20px
padding-bottom: 20px;
counter-increment: question-list;
content: counter(question-list) ": ";
}
#full-question-list img{
+7 -1
View File
@@ -198,8 +198,14 @@ button a {
padding: 20px
}
#full-question-list {
counter-reset: question-list; /* Set a counter named 'section', and its initial value is 0. */
}
#full-question-list li{
padding-bottom: 20px
padding-bottom: 20px;
counter-increment: question-list;
content: counter(question-list) ": ";
}
#full-question-list img{