mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
22 lines
364 B
SCSS
22 lines
364 B
SCSS
// Support for BBCode styles like colors and font sizes
|
|
|
|
span {
|
|
&.bbcode-b {
|
|
font-weight: bold;
|
|
}
|
|
&.bbcode-i {
|
|
font-style: italic;
|
|
}
|
|
&.bbcode-u {
|
|
text-decoration: underline;
|
|
}
|
|
&.bbcode-s {
|
|
text-decoration: line-through;
|
|
}
|
|
// Font sizes
|
|
@for $i from 4 through 40 {
|
|
&.bbcode-size-#{$i} {
|
|
font-size: #{$i}px;
|
|
}
|
|
}
|
|
}
|