| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- html, body.crt {
- height: auto;
- width: auto;
- min-height: 100vh;
- min-width: 100vw;
- max-width: 100vw;
- }
- p > img {
- max-width: 95%;
- max-height: 95%;
- display: block;
- position: relative;
- margin-left: auto;
- margin-right: auto;
- padding: 1%;
- }
- p > a {
- overflow-wrap: break-word;
- }
- .crt::after {
- animation: vm-flicker 10s infinite;
- animation-delay: 5s;
- }
- body *, .lead, .display-3 {
- line-height: 20px;
- font-size: 22px;
- }
- pre {
- padding-left: 15px;
- background-color: #272822;
- }
- pre > code {
- line-height: 18px;
- font-size: 20px;
- color: #bbb;
- width: 100%;
- }
- .bootstra-enable-cursor *, body.bootstra-enable-cursor {
- cursor:text!important;
- }
- .bootstra-enable-cursor .nav-link *, .bootstra-enable-cursor a {
- cursor:pointer!important;
- }
- .card-body > a {
- white-space: nowrap;
- overflow:hidden;
- text-overflow: ellipsis;
- max-width: 100%;
- }
|