|
32 | 32 | ('font-family: roman, fantasy', {'font': {'name': 'roman', 'family': 5}}),
|
33 | 33 | # - size
|
34 | 34 | ('font-size: 1em', {'font': {'size': 12}}),
|
| 35 | + ('font-size: xx-small', {'font': {'size': 6}}), |
| 36 | + ('font-size: x-small', {'font': {'size': 7.5}}), |
| 37 | + ('font-size: small', {'font': {'size': 9.6}}), |
| 38 | + ('font-size: medium', {'font': {'size': 12}}), |
| 39 | + ('font-size: large', {'font': {'size': 13.5}}), |
| 40 | + ('font-size: x-large', {'font': {'size': 18}}), |
| 41 | + ('font-size: xx-large', {'font': {'size': 24}}), |
| 42 | + ('font-size: 50%', {'font': {'size': 6}}), |
35 | 43 | # - bold
|
36 | 44 | ('font-weight: 100', {'font': {'bold': False}}),
|
37 | 45 | ('font-weight: 200', {'font': {'bold': False}}),
|
|
45 | 53 | ('font-weight: 800', {'font': {'bold': True}}),
|
46 | 54 | ('font-weight: 900', {'font': {'bold': True}}),
|
47 | 55 | # - italic
|
| 56 | + ('font-style: italic', {'font': {'italic': True}}), |
| 57 | + ('font-style: oblique', {'font': {'italic': True}}), |
48 | 58 | # - underline
|
49 | 59 | ('text-decoration: underline',
|
50 | 60 | {'font': {'underline': 'single'}}),
|
|
0 commit comments