style_widgets: Change webex widget style

Description Usage Arguments Details Examples

View source: R/webex_fns.R

Description

Change webex widget style

Usage

1
style_widgets(default = "red", correct = "blue")

Arguments

default

The colour of the widgets when the correct answer is not filled in (defaults to blue).

correct

The colour of the widgets when the correct answer not filled in (defaults to red).

Details

Call this function inline in an RMarkdown document to change the default and correct colours using any valid CSS colour word (e.g., red, rgb(255,0,0), hsl(0, 100

Examples

1
2
3
4
5
# change to green when correct
style_widgets(correct = "green")

# yellow when unfilled, pink when correct
style_widgets("#FFFF00", "#FF3399")

Example output

[1] "\n<style>\n    .solveme { border-color: blue; }\n    .solveme.correct { border-color: green; }\n</style>\n\n"
[1] "\n<style>\n    .solveme { border-color: #FFFF00; }\n    .solveme.correct { border-color: #FF3399; }\n</style>\n\n"

webex documentation built on June 10, 2021, 9:09 a.m.