xmc/modular/accessible_styles/italics_+_bold.css

16 lines
274 B
CSS
Raw Permalink 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-26 20:11:23 +00:00
text-shadow:
0.1px 0.1px,
-0.1px -0.1px;
2022-11-08 04:48:56 +00:00
}