Path: blob/master/src/packages/next/styles/globals.css
1447 views
.uppercase {1text-transform: uppercase;2}34/* Hiding class, making content visible only to screen readers but not visually5"sr" meaning "screen-reader" -- https://css-tricks.com/inclusively-hidden/6Anything marked with this is entirely for accessibility reasons!7*/89.sr-only:not(:focus):not(:active) {10clip: rect(0 0 0 0);11clip-path: inset(50%);12height: 1px;13overflow: hidden;14position: absolute;15white-space: nowrap;16width: 1px;17}1819/*20See https://wordpress.org/support/topic/katex-block-doesnt-break-formulas-into-lines/21This is also in packages/frontend/index.sass22*/23.katex-html {24white-space: pre-wrap;25}2627/* To match the app and let us uniformly change all the font colors with slate.28Antd hard codes the colors of the heading tags. */2930h1 {31font-size: 250%;32color: inherit;33}34h2 {35font-size: 200%;36color: inherit;37}38h3 {39font-size: 170%;40color: inherit;41}42h4 {43font-size: 150%;44color: inherit;45}46h5 {47font-size: 130%;48color: inherit;49}50h6 {51font-size: 110%;52color: inherit;53}5455@media (max-width: 767px) {56.cc-hidden-mobile {57display: none;58}59}6061body {62line-height: 1.5714285714285714;63}646566676869