23 lines
428 B
Plaintext
23 lines
428 B
Plaintext
#import "@preview/showybox:2.0.3": showybox
|
|
#import "@preview/physica:0.9.3": *
|
|
|
|
#let question(title, content) = {
|
|
showybox(
|
|
frame: (
|
|
border-color: blue.darken(50%),
|
|
title-color: blue.lighten(60%),
|
|
body-color: blue.lighten(80%)
|
|
),
|
|
title-style: (
|
|
color: black,
|
|
weight: "regular",
|
|
align: center
|
|
),
|
|
shadow: (
|
|
offset: 3pt,
|
|
),
|
|
title: title,
|
|
(content)
|
|
)
|
|
}
|