privatebin.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. transition: background-color 0.75s ease-out;
  46. }
  47. li.L0, li.L1, li.L2, li.L3, li.L5, li.L6, li.L7, li.L8 {
  48. list-style-type: decimal !important;
  49. }
  50. .text-right button {
  51. float: right;
  52. }
  53. html[dir="rtl"] #deletelink, html[dir="rtl"] #qrcodemodalClose {
  54. float: left;
  55. }