| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /**
- * PrivateBin
- *
- * a zero-knowledge paste bin
- *
- * @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
- * @version 1.7.1
- */
- .hidden { display: none !important; }
- #attachmentPreview img {
- max-width: 100%;
- height: auto;
- margin-bottom: 20px;
- }
- #attachmentPreview .pdfPreview {
- width: 100%;
- height: 100vh;
- margin-bottom: 20px;
- }
- #dropzone {
- text-align: center;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 1000;
- opacity: 0.6;
- background-color: #99ccff;
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z'/%3E%3C/svg%3E");
- background-repeat: no-repeat;
- background-position: center;
- background-size: 25vh;
- outline: 2px dashed #228bff;
- outline-offset: -50px;
- }
- .dragAndDropFile{
- color: #777;
- font-size: 1em;
- display: inline;
- white-space: normal;
- }
- #deletelink {
- float: right;
- margin-left: 5px;
- }
- #qrcodemodalClose {
- float: right;
- }
- #qrcode-display {
- width: 200px;
- height: 200px;
- margin: auto;
- }
- #pastelink {
- display: inline;
- }
- #pastelink > a {
- word-wrap: break-word;
- }
- #preview {
- margin-bottom: 10px;
- }
- #message, .replymessage {
- font-family: monospace;
- resize: vertical;
- }
- #nickname {
- margin: 5px 0;
- }
- #comments, #comments button {
- margin-bottom: 10px;
- }
- #filewrap {
- transition: background-color 0.75s ease-out;
- }
- .comment {
- border-left: 1px solid #ccc;
- padding: 5px 0 5px 10px;
- white-space: pre-wrap;
- transition: background-color 0.75s ease-out;
- }
- .highlight {
- background-color: #ffdd86;
- transition: background-color 0.2s ease-in;
- }
- li.L0, li.L1, li.L2, li.L3, li.L5, li.L6, li.L7, li.L8 {
- list-style-type: decimal !important;
- }
- .text-right button {
- float: right;
- }
- html[dir="rtl"] #deletelink, html[dir="rtl"] #qrcodemodalClose {
- float: left;
- }
|