| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- /**
- * PrivateBin
- *
- * Cascading style sheets for bootstrap template.
- *
- * @link https://github.com/PrivateBin/PrivateBin
- * @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
- * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
- */
- @import url("../common.css");
- body {
- padding: 0 0 30px;
- }
- body.navbar-spacing {
- padding-top: 70px;
- }
- body.loading {
- cursor: wait;
- }
- .buttondisabled {
- opacity: 0.3;
- }
- .navbar-nav {
- margin: 0 8px;
- }
- .nav.navbar-nav > li {
- margin-left: 8px;
- }
- .navbar-brand {
- padding: 6px 4px 0 8px;
- }
- .navbar-form {
- padding: 0;
- }
- .dropdown-menu > li > label, .dropdown-menu > li > div {
- clear: both;
- display: block;
- font-weight: normal;
- line-height: 1.42857;
- white-space: nowrap;
- }
- .dropdown-menu > li > label {
- color: #333;
- padding: 3px 20px 3px 40px;
- }
- .dropdown-menu > li > div {
- color: #777;
- padding: 3px 20px;
- cursor: default;
- }
- .pull-right .dropdown-menu {
- margin-left: -5em;
- }
- #language {
- margin-right: 8px;
- }
- #qrcodemodalClose {
- float: right;
- }
- #qrcode-display {
- width: 200px;
- height: 200px;
- margin: auto;
- }
- #pastelink {
- display: inline;
- }
- #pastelink > a {
- word-wrap: break-word;
- }
- #plaintext > a {
- word-wrap: break-word;
- }
- #message {
- height: 70dvh;
- }
- @media ((max-width: 450px) and (max-height: 950px)) {
- #message {
- height: 55dvh;
- }
- }
- #message, .replymessage {
- font-family: monospace;
- resize: vertical;
- }
- #nickname {
- margin: 5px 0;
- }
- .comment {
- border-left: 1px solid #ccc;
- padding: 5px 0 5px 10px;
- transition: background-color 0.75s ease-out;
- }
- footer h4 {
- margin-top: 0;
- }
- li.L0, li.L1, li.L2, li.L3, li.L5, li.L6, li.L7, li.L8 {
- list-style-type: decimal !important;
- }
- .dark-theme .alert-info .alert-link {
- color: #fff;
- }
- /* address 2K or 4K monitors when using bootstrap 3 */
- @media (min-width: 1280px) {
- .container {
- width: 100%;
- padding-left: 4ch;
- padding-right: 4ch;
- }
- }
- .modal-dialog {
- margin: auto !important;
- }
- /* makeup for the original margin on modal-dialog */
- @media (min-width: 768px) {
- .modal-content {
- margin: 30px 0;
- }
- }
- .modal-content {
- margin: 10px;
- }
- .modal-body {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .modal .modal-content button {
- margin: 0.5em 0;
- }
- /* right-to-left overrides */
- html[dir="rtl"] .checkbox label {
- padding-left: inherit;
- padding-right: 20px;
- }
- html[dir="rtl"] .checkbox input[type="checkbox"] {
- margin-left: inherit;
- margin-right: -20px;
- }
- html[dir="rtl"] #language {
- margin-left: inherit;
- margin-right: 8px;
- }
- html[dir="rtl"] #deletelink, html[dir="rtl"] #qrcodemodalClose {
- float: left;
- }
|