- Knowledge Base
- Stylesheets in Assessment Items
- Code Examples
-
TAO Quickstart Guide
-
How to Create a Test in TAO
-
Making the Most of the Asset Manager
-
Working With Metadata in TAO
-
Configuring Interactions: What Possibilities do You Have?
-
Randomization in Items and Tests
-
All You Need to Know About Test-Takers
-
All About Deliveries
-
Setting up LTI
-
Proctoring Assessments in TAO
-
How Does Scoring Work in TAO?
-
Interpreting Results Tables in TAO
-
Writing Your Own Scoring Rules for Your Assessments: An Example
-
Using the Advanced Search
-
Best Practices for Working with Multiple Users in a Small-scale Authoring Scenario Part 1: Set-up
-
Best Practices for Working with Multiple Users in a Small-scale Authoring Scenario Part 2: Workflow
-
Thinking About Test Questions (and Choosing Interactions) According to Task Type: Part 1
-
Thinking About Test Questions (and Choosing Interactions) According to Task Type: Part 2
-
Thinking About Test Questions (and Choosing Interactions) According to Task Type: Part 3
-
Thinking About Test Questions (and Choosing Interactions) According to Task Type: Part 4
-
Thinking About Test Questions (and Choosing Interactions) According to Task Type: Part 5
-
Optimizing Pictures
-
All About Extensions
-
Stylesheets in Assessment Items
-
TAO for RTL Languages
-
TAO Terminology Explained Part 1: TAO Architecture
-
TAO Terminology Explained Part 2: Creating and Delivering Assessments
-
TAO Terminology Explained Part 3: Scoring Assessments
-
Access Control
-
History Management
-
Item Layouts
-
Tests with Timers
-
Math Expressions
-
Testing Language Skills
-
Test-taker Tools: Accessibility
-
Test-taker Tools: Text-to-speech
-
Test-taker Tools: Calculators
-
Math Entry Interaction
-
Video Tutorial: Creating an Item with a Choice Interaction
-
Video Tutorial: Creating an Item with an Order Interaction
-
Video Tutorial: Creating an Item with an Associate Interaction
-
Video Tutorial: Creating an Item with a Match Interaction
-
Video Tutorial: Creating an Item with a Hot-text Interaction
-
Video Tutorial: Creating an Item with a Gap Match Interaction
-
Video Tutorial: Creating an Item with a Slider Interaction
-
Video Tutorial: Creating an Item with an Extended Text Interaction
-
Video Tutorial: Creating an Item with a File Upload Interaction
-
Video Tutorial: Creating an Item with an Inline Choice or a Text Entry Interaction
-
Video Tutorial: Creating an Item with a Media Interaction
-
Video Tutorial: Creating an Item with a Graphic Associate Interaction
-
Video Tutorial: Creating an Item with a Select Point Interaction
-
TAO Ignite: Look and Feel
-
How does scoring work in TAO? (II)
Using existing scopes
To avoid conflicts with the design of TAO’s user interface all rules must be prefixed like this:
html body div.qti-item
There is only one exception that we will address when talking about background colors and images.
Item-wide styles
Use the following selector for item-wide styles:
html body div.qti-item {
font-family: Helvetica, Arial, sans-serif;
background-color: #ddd;
}
Pre-defined scopes
All TAO QTI interactions share the same basic HTML structure. PCI interactions, in contrast, follow their own patterns.
<div class="qti-interaction qti-blockInteraction qti-associateInteraction">
These class names allow you to target for instance all Associate Interactions at once:
html body div.qti-item .qti-assosciateInteraction {
font-family: Helvetica, Arial, sans-serif;
background-color: #ddd;
}
Another possibility would be to target all interactions, but none of the text blocks:
html body div.qti-item .qti-interaction {
font-family: Helvetica, Arial, sans-serif;
background-color: #ddd;
}