xmc/modular/accessible_styles/italics_+_bold.css

14 lines
266 B
CSS
Raw Normal View History

2023-10-26 20:10:59 +00:00
span[data-slate-leaf="true"][class*="italics_"],
2022-11-08 04:48:56 +00:00
em {
font-style: normal;
display: inline-block;
transform: skewX(-8deg);
color: #f80;
}
2023-10-26 20:10:59 +00:00
span[data-slate-leaf="true"][class*="bold_"],
2022-11-08 04:48:56 +00:00
strong {
font-weight: 400;
2023-10-19 17:29:08 +00:00
text-shadow: 0.1px 0.1px, -0.1px -0.1px;
2022-11-08 04:48:56 +00:00
}