1
0

privatebin.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /**
  2. * PrivateBin
  3. *
  4. * Cascading style sheets for bootstrap 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. body {
  12. padding: 0 0 30px;
  13. }
  14. body.navbar-spacing {
  15. padding-top: 70px;
  16. }
  17. body.loading {
  18. cursor: wait;
  19. }
  20. .buttondisabled {
  21. opacity: 0.3;
  22. }
  23. .navbar-nav {
  24. margin: 0 8px;
  25. }
  26. .nav.navbar-nav > li {
  27. margin-left: 8px;
  28. }
  29. .navbar-brand {
  30. padding: 6px 4px 0 8px;
  31. }
  32. .navbar-form {
  33. padding: 0;
  34. }
  35. .dropdown-menu > li > label, .dropdown-menu > li > div {
  36. clear: both;
  37. display: block;
  38. font-weight: normal;
  39. line-height: 1.42857;
  40. white-space: nowrap;
  41. }
  42. .dropdown-menu > li > label {
  43. color: #333;
  44. padding: 3px 20px 3px 40px;
  45. }
  46. .dropdown-menu > li > div {
  47. color: #777;
  48. padding: 3px 20px;
  49. cursor: default;
  50. }
  51. .pull-right .dropdown-menu {
  52. margin-left: -5em;
  53. }
  54. #language {
  55. margin-right: 8px;
  56. }
  57. .comment {
  58. padding: 5px 0 5px 10px;
  59. }
  60. footer h4 {
  61. margin-top: 0;
  62. }
  63. li.L0, li.L1, li.L2, li.L3, li.L5, li.L6, li.L7, li.L8 {
  64. list-style-type: decimal !important;
  65. }
  66. .dark-theme .alert-info .alert-link {
  67. color: #fff;
  68. }
  69. /* address 2K or 4K monitors when using bootstrap 3 */
  70. @media (min-width: 1280px) {
  71. .container {
  72. width: 100%;
  73. padding-left: 4ch;
  74. padding-right: 4ch;
  75. }
  76. }
  77. .modal-dialog {
  78. margin: auto !important;
  79. }
  80. /* makeup for the original margin on modal-dialog */
  81. @media (min-width: 768px) {
  82. .modal-content {
  83. margin: 30px 0;
  84. }
  85. }
  86. .modal-content {
  87. margin: 10px;
  88. }
  89. .modal-body {
  90. display: flex;
  91. justify-content: center;
  92. align-items: center;
  93. }
  94. .modal .modal-content button {
  95. margin: 0.5em 0;
  96. }
  97. /* right-to-left overrides */
  98. html[dir="rtl"] .checkbox label {
  99. padding-left: inherit;
  100. padding-right: 20px;
  101. }
  102. html[dir="rtl"] .checkbox input[type="checkbox"] {
  103. margin-left: inherit;
  104. margin-right: -20px;
  105. }
  106. html[dir="rtl"] #language {
  107. margin-left: inherit;
  108. margin-right: 8px;
  109. }
  110. html[dir="rtl"] #deletelink, html[dir="rtl"] #qrcodemodalClose {
  111. float: left;
  112. }