Stylament 0.28.3

Sectioning

Heading Content

h1-6

scss
:is(h1, h2, h3, h4, h5, h6) {
  @if $colors and map.get($colors, heading) {
    @include coloring.set-colors("heading");
    color: var(---clr-fg);
  }
}

Section headings.

Related

Spec [external]

MDN [external]

h#{$level}

scss
h#{$level} {
  @if $colors and map.get($colors, heading-#{$level}) {
      @include coloring.set-colors("heading-#{$level}", "heading");
    }
}

Sectioning Scope Specific Elements

address

scss
address {
  
}

Contact address.

Related

Spec [external]

MDN [external]

header

scss
header {
  
}

Section header.

Related

Spec [external]

MDN [external]

Sections

article

scss
article {
  
}

Article contents.

Related

Spec [external]

MDN [external]

aside

scss
aside {
  
}

Aside.

Related

Spec [external]

MDN [external]

nav

scss
nav {
  
}

Navigation section.

Related

Spec [external]

MDN [external]

section

scss
section {
  
}

Generic section.

Related

Spec [external]

MDN [external]