QCS/qcs.typ
2024-10-18 09:40:24 +02:00

23 lines
428 B
Plaintext

#import "@preview/showybox:2.0.1": 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)
)
}