1#readme {2 max-width: 60em;3 line-height: 1.5;4 text-align: justify;5}67@media (max-width: 60em) {8 {{/* Raw READMEs should not overflow on smaller devices */}}9 #readme pre.raw { overflow: auto !important; }10}1112#readme img {13 width: auto;14 height: auto;15 max-width: 100%;16 max-height: 100%;17}1819#readme pre.raw {20 padding: 0px;21 margin: 0px;22 overflow: visible;23}2425#readme pre {26 margin: 1em 0em 1em 0em;27 overflow: auto;28}2930#readme pre code {31 width: auto;32 min-width: 100%;33 padding: 1em;34 box-sizing: border-box;35}3637#readme code {38 display: inline-block;39 padding: .2em .4em;40 line-height: normal;41 border-radius: 5px;42 background: var(--color-athens-grey);43}4445#readme p {46 padding: 5px 0px 5px 0px;47}4849#readme a {50 text-decoration: underline;51}