privatebin.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. * @version 1.7.1
  10. */
  11. @import url("../common.css");
  12. .hidden {
  13. display: none !important;
  14. }
  15. #qrcodemodalClose {
  16. float: right;
  17. }
  18. #qrcode-display {
  19. width: 200px;
  20. height: 200px;
  21. margin: auto;
  22. }
  23. #pastelink {
  24. display: inline;
  25. }
  26. #pastelink > a {
  27. word-wrap: break-word;
  28. }
  29. #preview {
  30. margin-bottom: 10px;
  31. }
  32. #message, .replymessage {
  33. font-family: monospace;
  34. resize: vertical;
  35. }
  36. #nickname {
  37. margin: 5px 0;
  38. }
  39. #comments, #comments button {
  40. margin-bottom: 10px;
  41. }
  42. .comment {
  43. border-left: 1px solid #ccc;
  44. padding: 5px 0 5px 10px;
  45. white-space: pre-wrap;
  46. transition: background-color 0.75s ease-out;
  47. }
  48. li.L0, li.L1, li.L2, li.L3, li.L5, li.L6, li.L7, li.L8 {
  49. list-style-type: decimal !important;
  50. }
  51. .text-right button {
  52. float: right;
  53. }
  54. html[dir="rtl"] #deletelink, html[dir="rtl"] #qrcodemodalClose {
  55. float: left;
  56. }