Skip to content

Commit

Permalink
Admonitions working.
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinguericke committed Jul 5, 2024
1 parent 323d782 commit f2e2c84
Showing 1 changed file with 27 additions and 17 deletions.
44 changes: 27 additions & 17 deletions lib/public/global-training.css
Original file line number Diff line number Diff line change
Expand Up @@ -212,20 +212,38 @@ blockquote {
font-size:15px;
}

blockquote.success {
@extend .alert-success;
blockquote.note {
@extend .alert-note;
}
blockquote.success p:before {
content: "✓ Success: ";
blockquote.note p:before {
content: "Note: ";
font-weight:bold;
font-size:16px;
}

blockquote.tip {
@extend .alert-tip;
}
blockquote.tip p:before {
content: "Tip: ";
font-weight:bold;
font-size:16px;
}

blockquote.important {
@extend .alert-important;
}
blockquote.important p:before {
content: "Important: ";
font-weight:bold;
font-size:16px;
}

blockquote.danger {
@extend .alert-danger;
blockquote.caution {
@extend .alert-caution;
}
blockquote.danger p:before {
content: "⊠ Danger: ";
blockquote.caution p:before {
content: "Caution: ";
font-weight:bold;
font-size:16px;
}
Expand All @@ -234,16 +252,8 @@ blockquote {
@extend .alert-warning;
}
blockquote.warning p:before {
content: "Warning: ";
content: "Warning: ";
font-weight:bold;
font-size:16px;
}

blockquote.info {
@extend .alert-info;
}
blockquote.info p:before {
content: "ⓘ Info: ";
font-weight:bold;
font-size:16px;
}

0 comments on commit f2e2c84

Please sign in to comment.