custom.css 939 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 {
  29. padding-left: 15px;
  30. background-color: #272822;
  31. }
  32. pre > code {
  33. line-height: 18px;
  34. font-size: 20px;
  35. color: #bbb;
  36. width: 100%;
  37. }
  38. .bootstra-enable-cursor *, body.bootstra-enable-cursor {
  39. cursor:text!important;
  40. }
  41. .bootstra-enable-cursor .nav-link *, .bootstra-enable-cursor a {
  42. cursor:pointer!important;
  43. }
  44. .card-body > a {
  45. white-space: nowrap;
  46. overflow:hidden;
  47. text-overflow: ellipsis;
  48. max-width: 100%;
  49. }