summaryrefslogtreecommitdiff
path: root/docs/modules/theme/pages/thematic-break.adoc
blob: 65fc12aaeedfa2009523172ad21b8c8f8c005dea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
= Thematic Break Category Keys
:description: Reference list of the available thematic break category keys and their value types.
:navtitle: Thematic Break
:source-language: yaml

The keys in the `thematic-break` category control the style of thematic breaks, which are also known as horizontal rules.

[cols="3,4,5a"]
|===
|Key |Value Type |Example

|border-color
|xref:color.adoc[Color] +
(default: `'EEEEEE'`)
|[source]
thematic-break:
  border-color: #E6E8FA

|border-style
|`dashed` {vbar} `dotted` {vbar} `double` {vbar} `solid` +
(default: `solid`)
|[source]
thematic-break:
  border-style: dashed

|border-width
|xref:measurement-units.adoc[Measurement] +
(default: `0.5`)
|[source]
thematic-break:
  border-width: 0.8

|padding
|xref:measurement-units.adoc[Measurement] {vbar} xref:measurement-units.adoc[Measurement[top,right,bottom,left\]] +
(default: `0`)
|[source]
thematic-break:
  padding: [3, 12]
|===