custom.css 931 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. html, body.crt {
  2. height: auto;
  3. width: auto;
  4. min-height: 100vh;
  5. min-width: 100vw;
  6. max-width: 100vw;
  7. }
  8. p > img {
  9. max-width: 95%;
  10. max-height: 95%;
  11. display: block;
  12. position: relative;
  13. margin-left: auto;
  14. margin-right: auto;
  15. padding: 1%;
  16. }
  17. p > a {
  18. overflow-wrap: break-word;
  19. }
  20. .crt::after {
  21. animation: vm-flicker 10s infinite;
  22. animation-delay: 5s;
  23. }
  24. body *, .lead, .display-3 {
  25. line-height: 20px;
  26. font-size: 22px;
  27. }
  28. pre code {
  29. line-height: 18px;
  30. font-size: 20px;
  31. }
  32. .bootstra-enable-cursor *, body.bootstra-enable-cursor {
  33. cursor:text!important;
  34. }
  35. .bootstra-enable-cursor .nav-link *, .bootstra-enable-cursor a {
  36. cursor:pointer!important;
  37. }
  38. pre > code {
  39. color: #bbb;
  40. width: 100%;
  41. }
  42. pre {
  43. background-color: #272822;
  44. }
  45. .card-body > a {
  46. white-space: nowrap;
  47. overflow:hidden;
  48. text-overflow: ellipsis;
  49. max-width: 100%;
  50. }