QCS/qcs.typ

23 lines
428 B
Plaintext
Raw Permalink Normal View History

2024-11-30 10:26:49 +01:00
#import "@preview/showybox:2.0.3": showybox
2024-10-18 09:40:24 +02:00
#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)
)
}