privatebin.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /**
  2. * PrivateBin
  3. *
  4. * Cascading style sheets for bootstrap 5 template.
  5. *
  6. * @link https://github.com/PrivateBin/PrivateBin
  7. * @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
  8. * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
  9. */
  10. @import url("../common.css");
  11. .hidden {
  12. display: none !important;
  13. }
  14. #qrcodemodalClose {
  15. float: right;
  16. }
  17. #qrcode-display {
  18. width: 200px;
  19. height: 200px;
  20. margin: auto;
  21. }
  22. #pastelink {
  23. display: inline;
  24. }
  25. #pastelink > a {
  26. word-wrap: break-word;
  27. }
  28. #message {
  29. height: 70dvh;
  30. }
  31. @media ((max-width: 450px) and (max-height: 950px)) {
  32. #message {
  33. height: 55dvh;
  34. }
  35. }
  36. #message, .replymessage {
  37. font-family: monospace;
  38. resize: vertical;
  39. }
  40. .comment {
  41. border-left: 1px solid #ccc;
  42. transition: background-color 0.75s ease-out;
  43. }
  44. .dropdown-menu {
  45. --bs-dropdown-min-width: 23rem;
  46. }
  47. [data-bs-theme=light] pre, [data-bs-theme=light] .card {
  48. background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1));
  49. }
  50. li.L0, li.L1, li.L2, li.L3, li.L4, li.L5, li.L6, li.L7, li.L8, li.L9 {
  51. color: revert !important;
  52. list-style-type: decimal !important;
  53. }
  54. [data-bs-theme=dark] li.L1, [data-bs-theme=dark] li.L3, [data-bs-theme=dark] li.L5,
  55. [data-bs-theme=dark] li.L7, [data-bs-theme=dark] li.L9 {
  56. background-color: var(--bs-gray-dark) !important;
  57. }
  58. .text-right button {
  59. float: right;
  60. }
  61. html[dir="rtl"] #deletelink, html[dir="rtl"] #qrcodemodalClose {
  62. float: left;
  63. }