mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 18:32:41 +00:00
Adding sub and sup support
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
# changelog
|
||||
|
||||
### Monday, 29/02/2016
|
||||
### Monday, 29/02/2016 - v1.3.1
|
||||
* Removng the changelog button from the Share page
|
||||
* Added a A4 page size snippet (thanks guppy42!)
|
||||
* Added support for `<sup>` and `<sub>` tags (thanks crashinworld14!)
|
||||
|
||||
### Saturday, 20/02/2016
|
||||
* Fixed h1 headers not going full width (thanks McToomin27)
|
||||
|
||||
@@ -84,6 +84,17 @@
|
||||
em{
|
||||
font-style : italic;
|
||||
}
|
||||
sup{
|
||||
vertical-align: super;
|
||||
font-size: smaller;
|
||||
line-height: 0;
|
||||
}
|
||||
sub{
|
||||
vertical-align: sub;
|
||||
font-size: smaller;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
//*****************************
|
||||
// * HEADERS
|
||||
// *****************************/
|
||||
|
||||
@@ -232,6 +232,16 @@ table {
|
||||
.phb em {
|
||||
font-style: italic;
|
||||
}
|
||||
.phb sup {
|
||||
vertical-align: super;
|
||||
font-size: smaller;
|
||||
line-height: 0;
|
||||
}
|
||||
.phb sub {
|
||||
vertical-align: sub;
|
||||
font-size: smaller;
|
||||
line-height: 0;
|
||||
}
|
||||
.phb h1,
|
||||
.phb h2,
|
||||
.phb h3,
|
||||
|
||||
Reference in New Issue
Block a user