2016-08-25 09:53:31 +02:00
|
|
|
/**
|
|
|
|
* PrivateBin
|
|
|
|
*
|
2016-10-25 21:13:43 +02:00
|
|
|
* Main CSS file.
|
2016-08-25 09:53:31 +02:00
|
|
|
*
|
|
|
|
* @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
|
2020-03-22 06:44:04 +01:00
|
|
|
* @version 1.3.4
|
2016-08-25 09:53:31 +02:00
|
|
|
*/
|
2012-04-21 21:59:45 +02:00
|
|
|
|
|
|
|
/* CSS Reset from YUI 3.4.1 (build 4118) - Copyright 2011 Yahoo! Inc. All rights reserved.
|
|
|
|
Licensed under the BSD License. - http://yuilibrary.com/license/ */
|
2012-08-28 23:28:41 +02:00
|
|
|
html{color:#000;background:#fff}body,div,dl,dt,dd,ul,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{font-size:100%;}legend{color:#000}
|
2012-04-21 21:59:45 +02:00
|
|
|
|
2012-08-26 00:49:11 +02:00
|
|
|
html {
|
|
|
|
background-color: #455463;
|
|
|
|
color: #fff;
|
|
|
|
min-height: 100%;
|
2012-08-28 23:28:41 +02:00
|
|
|
background-image: linear-gradient(bottom, #0f1823 0, #455463 100%);
|
|
|
|
background-image: -o-linear-gradient(bottom, #0f1823 0, #455463 100%);
|
|
|
|
background-image: -moz-linear-gradient(bottom, #0f1823 0, #455463 100%);
|
|
|
|
background-image: -webkit-linear-gradient(bottom, #0f1823 0, #455463 100%);
|
|
|
|
background-image: -ms-linear-gradient(bottom, #0f1823 0, #455463 100%);
|
2012-08-26 00:49:11 +02:00
|
|
|
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0f1823), color-stop(1, #455463));
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2015-09-12 17:33:16 +02:00
|
|
|
font-family: Helvetica, Arial, sans-serif;
|
2015-08-22 17:40:26 +02:00
|
|
|
font-size: 0.9em;
|
2012-08-26 00:49:11 +02:00
|
|
|
margin-bottom: 15px;
|
|
|
|
padding-left: 60px;
|
|
|
|
padding-right: 60px;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
2015-09-12 17:33:16 +02:00
|
|
|
|
2015-09-16 22:51:48 +02:00
|
|
|
a { color: #0f388f; cursor:pointer; }
|
2012-04-21 21:59:45 +02:00
|
|
|
|
2015-09-12 17:33:16 +02:00
|
|
|
h1.title {
|
2012-08-26 00:49:11 +02:00
|
|
|
font-size: 3.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #000;
|
|
|
|
position: relative;
|
|
|
|
display: inline;
|
|
|
|
cursor: pointer;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
|
|
|
|
2015-09-12 17:33:16 +02:00
|
|
|
h1.title:before {
|
2012-08-26 00:49:11 +02:00
|
|
|
content: attr(title);
|
|
|
|
position: absolute;
|
|
|
|
color: rgba(255,255,255,0.15);
|
|
|
|
top: 1px;
|
|
|
|
left: 1px;
|
|
|
|
cursor: pointer;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
|
|
|
|
2015-09-12 17:33:16 +02:00
|
|
|
h2.title {
|
2012-08-26 00:49:11 +02:00
|
|
|
color: #000;
|
|
|
|
font-size: 1em;
|
|
|
|
display: inline;
|
|
|
|
font-style: italic;
|
|
|
|
font-weight: bold;
|
|
|
|
position: relative;
|
|
|
|
bottom: 8px;
|
|
|
|
}
|
2015-09-12 17:33:16 +02:00
|
|
|
|
|
|
|
h3.title {
|
2012-08-26 00:49:11 +02:00
|
|
|
color: #94a3b4;
|
|
|
|
font-size: 0.7em;
|
|
|
|
display: inline;
|
|
|
|
margin-top: 10px;
|
|
|
|
position: relative;
|
|
|
|
bottom: 8px;
|
2015-09-12 17:33:16 +02:00
|
|
|
}
|
2012-04-21 21:59:45 +02:00
|
|
|
|
2017-11-26 15:59:12 +01:00
|
|
|
#aboutbox {
|
|
|
|
color: #94a3b4;
|
2012-08-26 00:49:11 +02:00
|
|
|
padding: 4px 8px 4px 16px;
|
2017-11-26 15:59:12 +01:00
|
|
|
position: relative;
|
2012-08-26 00:49:11 +02:00
|
|
|
top: 10px;
|
|
|
|
border-left: 2px solid #94a3b4;
|
2017-11-26 15:59:12 +01:00
|
|
|
float: right;
|
2012-08-26 00:49:11 +02:00
|
|
|
width: 60%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#aboutbox a { color: #94a3b4; }
|
|
|
|
|
2015-09-16 22:51:48 +02:00
|
|
|
#message, #cleartext, #prettymessage, #attachment, .replymessage {
|
2012-08-26 00:49:11 +02:00
|
|
|
clear: both;
|
|
|
|
color: #000;
|
|
|
|
background-color: #fff;
|
|
|
|
font-size: 9pt;
|
|
|
|
border: 1px solid #28343F;
|
|
|
|
box-sizing: border-box;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
-ms-box-sizing: border-box;
|
|
|
|
-o-box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2015-09-12 17:33:16 +02:00
|
|
|
#message, .replymessage {
|
|
|
|
padding: 5px;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
font-family: Consolas, "Lucida Console", "DejaVu Sans Mono", Monaco, monospace;
|
2019-08-19 14:46:01 +02:00
|
|
|
resize: vertical;
|
2015-09-12 17:33:16 +02:00
|
|
|
}
|
|
|
|
|
2017-02-12 15:35:37 +01:00
|
|
|
#attachmentPreview img {
|
2015-09-18 21:41:50 +02:00
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:35:37 +01:00
|
|
|
#attachmentPreview .pdfPreview {
|
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2019-08-16 01:28:42 +02:00
|
|
|
#dropzone {
|
|
|
|
text-align: center;
|
2019-08-21 08:24:56 +02:00
|
|
|
position: fixed;
|
2019-08-16 01:28:42 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:35:37 +01:00
|
|
|
.dragAndDropFile{
|
2019-08-16 01:28:42 +02:00
|
|
|
color: #777;
|
|
|
|
font-size: 1em;
|
|
|
|
display: inline;
|
|
|
|
white-space: normal;
|
2017-02-12 15:35:37 +01:00
|
|
|
}
|
|
|
|
|
2017-11-26 15:59:12 +01:00
|
|
|
#status {
|
2012-08-26 00:49:11 +02:00
|
|
|
clear: both;
|
|
|
|
padding: 5px 10px;
|
|
|
|
}
|
|
|
|
|
2017-11-26 15:59:12 +01:00
|
|
|
#pasteresult {
|
2012-08-26 00:49:11 +02:00
|
|
|
background-color: #1F2833;
|
|
|
|
color: #fff;
|
2016-10-31 12:20:07 +01:00
|
|
|
padding: 4px 12px;
|
2012-08-26 00:49:11 +02:00
|
|
|
clear: both;
|
|
|
|
-moz-box-shadow: inset 0 2px 2px #000;
|
|
|
|
-webkit-box-shadow: inset 0 2px 2px #000;
|
|
|
|
box-shadow: inset 0 2px 2px #000;
|
|
|
|
}
|
|
|
|
|
2013-11-01 01:15:14 +01:00
|
|
|
#pasteresult a { color: #fff; }
|
|
|
|
|
2013-02-23 15:11:45 +01:00
|
|
|
#pasteresult button { margin-left: 11px; }
|
2012-08-26 00:49:11 +02:00
|
|
|
|
2013-11-01 01:15:14 +01:00
|
|
|
#deletelink { float: right; }
|
2012-08-26 00:49:11 +02:00
|
|
|
|
|
|
|
#toolbar, #status { margin-bottom: 5px; }
|
|
|
|
|
2017-11-26 15:59:12 +01:00
|
|
|
#copyhint { color: #666; font-size: 0.85em }
|
2013-02-23 15:11:45 +01:00
|
|
|
|
2015-09-19 11:21:13 +02:00
|
|
|
button, .button {
|
2012-08-26 00:49:11 +02:00
|
|
|
color: #fff;
|
|
|
|
background-color: #323b47;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center left;
|
|
|
|
padding: 4px 8px;
|
|
|
|
font-size: 1em;
|
|
|
|
margin-right: 5px;
|
2015-09-19 11:21:13 +02:00
|
|
|
display: inline-block;
|
2012-08-26 00:49:11 +02:00
|
|
|
background-image: linear-gradient(bottom, #323b47 0, #51606e 100%);
|
|
|
|
background-image: -o-linear-gradient(bottom, #323b47 0, #51606e 100%);
|
|
|
|
background-image: -moz-linear-gradient(bottom, #323b47 0, #51606e 100%);
|
|
|
|
background-image: -webkit-linear-gradient(bottom, #323b47 0, #51606e 100%);
|
|
|
|
background-image: -ms-linear-gradient(bottom, #323b47 0, #51606e 100%);
|
|
|
|
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #323b47), color-stop(1, #51606e));
|
|
|
|
border: 1px solid #28343F;
|
|
|
|
-moz-box-shadow: inset 0 1px 2px #647384;
|
|
|
|
-webkit-box-shadow: inset 0 1px 2px #647384;
|
|
|
|
box-shadow: inset 0 1px 2px #647384;
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
border-radius: 3px;
|
|
|
|
-moz-background-clip: padding;
|
|
|
|
-webkit-background-clip: padding-box;
|
|
|
|
background-clip: padding-box;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
2012-08-26 00:49:11 +02:00
|
|
|
|
2016-10-25 21:13:43 +02:00
|
|
|
button:hover {
|
2012-08-26 00:49:11 +02:00
|
|
|
background-image: linear-gradient(bottom, #424b57 0%, #61707e 100%);
|
|
|
|
background-image: -o-linear-gradient(bottom, #424b57 0%, #61707e 100%);
|
|
|
|
background-image: -moz-linear-gradient(bottom, #424b57 0%, #61707e 100%);
|
|
|
|
background-image: -webkit-linear-gradient(bottom, #424b57 0%, #61707e 100%);
|
|
|
|
background-image: -ms-linear-gradient(bottom, #424b57 0%, #61707e 100%);
|
|
|
|
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #424b57), color-stop(1, #61707e));
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
2012-08-26 00:49:11 +02:00
|
|
|
|
2012-04-21 21:59:45 +02:00
|
|
|
button:active {
|
2012-08-26 00:49:11 +02:00
|
|
|
background-image: linear-gradient(bottom, #51606e 0, #323b47 100%);
|
|
|
|
background-image: -o-linear-gradient(bottom, #51606e 0, #323b47 100%);
|
|
|
|
background-image: -moz-linear-gradient(bottom, #51606e 0, #323b47 100%);
|
|
|
|
background-image: -webkit-linear-gradient(bottom, #51606e 0, #323b47 100%);
|
|
|
|
background-image: -ms-linear-gradient(bottom, #51606e 0, #323b47 100%);
|
|
|
|
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #51606e), color-stop(1, #323b47));
|
|
|
|
position:relative;
|
|
|
|
top:1px;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
2012-08-26 00:49:11 +02:00
|
|
|
|
2012-04-21 21:59:45 +02:00
|
|
|
button:disabled, .buttondisabled {
|
2012-08-26 00:49:11 +02:00
|
|
|
background: #ccc;
|
|
|
|
color: #888;
|
|
|
|
top: 0;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
2012-08-26 00:49:11 +02:00
|
|
|
|
2012-04-21 21:59:45 +02:00
|
|
|
button img {
|
2012-08-26 00:49:11 +02:00
|
|
|
margin-right: 8px;
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
|
|
|
|
2016-10-25 21:13:43 +02:00
|
|
|
.button {
|
|
|
|
background-color: #414d5a;
|
2012-08-26 00:49:11 +02:00
|
|
|
padding: 6px 8px;
|
|
|
|
margin: 0 5px 0 0;
|
|
|
|
position: relative;
|
|
|
|
bottom: 1px; /* WTF ? Why is this shifted by 1 pixel ? */
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
2012-08-26 00:49:11 +02:00
|
|
|
|
2015-09-19 11:21:13 +02:00
|
|
|
.button select {
|
2012-08-26 00:49:11 +02:00
|
|
|
color: #eee;
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-19 11:21:13 +02:00
|
|
|
.button select option {
|
2012-08-26 00:49:11 +02:00
|
|
|
color:#eee;
|
|
|
|
background: #414d5a;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
|
|
|
|
2013-02-24 16:29:13 +01:00
|
|
|
#rawtextbutton img {
|
|
|
|
padding: 1px 0 1px 0;
|
|
|
|
}
|
|
|
|
|
2015-09-12 17:33:16 +02:00
|
|
|
#remainingtime, #password {
|
2016-10-25 21:13:43 +02:00
|
|
|
color: #94a3b4;
|
2012-08-26 00:49:11 +02:00
|
|
|
display: inline;
|
|
|
|
font-size: 0.85em;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
|
|
|
|
2012-08-26 00:49:11 +02:00
|
|
|
#newbutton {
|
|
|
|
float: right;
|
|
|
|
margin-right: 0;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
display: inline;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
|
|
|
|
2012-08-26 00:49:11 +02:00
|
|
|
input {
|
|
|
|
color: #777;
|
|
|
|
font-size: 1em;
|
|
|
|
padding: 6px;
|
|
|
|
border: 1px solid #28343f;
|
|
|
|
}
|
2012-04-21 21:59:45 +02:00
|
|
|
|
2012-08-26 00:49:11 +02:00
|
|
|
.blink {
|
|
|
|
text-decoration: blink;
|
|
|
|
font-size: 0.8em;
|
|
|
|
color: #a4b3c4;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
|
|
|
|
2012-08-26 00:49:11 +02:00
|
|
|
.foryoureyesonly {
|
|
|
|
color: #ff0 !important;
|
|
|
|
font-size: 1em !important;
|
|
|
|
font-weight: bold !important;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
|
|
|
|
2017-02-12 15:35:37 +01:00
|
|
|
#attachmentPreview, .nonworking {
|
2012-08-26 00:49:11 +02:00
|
|
|
background-color: #fff;
|
|
|
|
color: #000;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 10pt;
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
-moz-border-radius: 4px;
|
|
|
|
border-radius: 4px;
|
2015-09-18 21:41:50 +02:00
|
|
|
padding: 5px 0;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
|
|
|
|
2012-08-26 00:49:11 +02:00
|
|
|
.hidden { display: none !important; }
|
|
|
|
|
|
|
|
#ienotice {
|
|
|
|
background-color: #7e98af;
|
|
|
|
color: #000;
|
|
|
|
font-size: 0.85em;
|
|
|
|
padding: 3px 5px;
|
|
|
|
text-align: center;
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
-moz-border-radius: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
display: none;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
|
|
|
|
2012-08-26 00:49:11 +02:00
|
|
|
#ienotice a { color: #000; }
|
|
|
|
|
2019-06-17 21:40:37 +02:00
|
|
|
#oldnotice, #httpnotice { display: none; }
|
2012-08-26 00:49:11 +02:00
|
|
|
|
2019-06-17 21:40:37 +02:00
|
|
|
#errormessage, .errorMessage {
|
2012-08-26 00:49:11 +02:00
|
|
|
background-color: #f77 !important;
|
|
|
|
color:#ff0;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
|
|
|
|
2016-11-13 12:38:55 +01:00
|
|
|
.small {
|
2016-10-31 12:20:07 +01:00
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
|
2012-04-21 21:59:45 +02:00
|
|
|
/* --- discussion related CSS ------- */
|
|
|
|
|
2012-08-26 00:49:11 +02:00
|
|
|
#discussion { /* Discussion container */
|
|
|
|
margin-top: 20px;
|
|
|
|
width: 100%;
|
|
|
|
margin-left: -30px;
|
|
|
|
min-width: 200px;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
|
|
|
|
2015-09-12 17:33:16 +02:00
|
|
|
h4.title {
|
2012-08-26 00:49:11 +02:00
|
|
|
font-size: 1.2em;
|
|
|
|
color: #94a3b4;
|
|
|
|
font-style: italic;
|
2016-10-25 21:13:43 +02:00
|
|
|
font-weight: bold;
|
2012-08-26 00:49:11 +02:00
|
|
|
position: relative;
|
|
|
|
margin-left: 30px;
|
2012-04-21 21:59:45 +02:00
|
|
|
}
|
|
|
|
|
2012-08-26 00:49:11 +02:00
|
|
|
.comment /* One single reply */
|
2012-04-21 21:59:45 +02:00
|
|
|
{
|
2012-08-26 00:49:11 +02:00
|
|
|
background-color: #ceced6;
|
|
|
|
color: #000;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
font-family: Consolas,"Lucida Console","DejaVu Sans Mono",Monaco,monospace;
|
|
|
|
font-size: 9pt;
|
|
|
|
border-left: 1px solid #859AAE;
|
|
|
|
border-top: 1px solid #859AAE;
|
|
|
|
padding: 5px 0px 5px 5px;
|
|
|
|
margin-left: 30px;
|
|
|
|
-moz-box-shadow: -3px -3px 5px rgba(0,0,0,0.15);
|
|
|
|
-webkit-box-shadow: -3px -3px 5px rgba(0,0,0,0.15);
|
|
|
|
box-shadow: -3px -3px 5px rgba(0,0,0,0.15);
|
|
|
|
min-width: 200px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply { margin: 5px 0 0 30px; }
|
|
|
|
|
|
|
|
#replystatus {
|
|
|
|
display: inline;
|
|
|
|
padding: 1px 7px;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment button {
|
|
|
|
color: #446;
|
|
|
|
background-color: #aab;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center left;
|
|
|
|
padding: 0 2px;
|
|
|
|
font-size: 0.73em;
|
|
|
|
margin: 3px 5px 3px 0;
|
|
|
|
display: inline;
|
|
|
|
background-image: linear-gradient(bottom, #aab 0, #ccc 100%);
|
|
|
|
background-image: -o-linear-gradient(bottom, #aab 0, #ccc 100%);
|
|
|
|
background-image: -moz-linear-gradient(bottom, #aab 0, #ccc 100%);
|
|
|
|
background-image: -webkit-linear-gradient(bottom, #aab 0, #ccc 100%);
|
|
|
|
background-image: -ms-linear-gradient(bottom, #aab 0, #ccc 100%);
|
|
|
|
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #aab), color-stop(1, #ccc));
|
|
|
|
border: 1px solid #ccd;
|
|
|
|
-moz-box-shadow: inset 0 1px 2px #ddd;
|
|
|
|
-webkit-box-shadow: inset 0 1px 2px #fff;
|
|
|
|
box-shadow: inset 0 1px 2px #eee;
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
border-radius: 3px;
|
|
|
|
-moz-background-clip: padding;
|
|
|
|
-webkit-background-clip: padding-box;
|
|
|
|
background-clip: padding-box;
|
|
|
|
}
|
|
|
|
|
2016-10-25 21:13:43 +02:00
|
|
|
.comment button:hover {
|
2012-08-26 00:49:11 +02:00
|
|
|
background-image: linear-gradient(bottom, #ccd 0, #fff 100%);
|
|
|
|
background-image: -o-linear-gradient(bottom, #ccd 0, #fff 100%);
|
|
|
|
background-image: -moz-linear-gradient(bottom, #ccd 0, #fff 100%);
|
|
|
|
background-image: -webkit-linear-gradient(bottom, #ccd 0, #fff 100%);
|
|
|
|
background-image: -ms-linear-gradient(bottom, #ccd 0, #fff 100%);
|
|
|
|
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccd), color-stop(1, #fff));
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment button:active {
|
|
|
|
background-image: linear-gradient(bottom, #fff 0, #889 100%);
|
|
|
|
background-image: -o-linear-gradient(bottom, #fff 0, #889 100%);
|
|
|
|
background-image: -moz-linear-gradient(bottom, #fff 0, #889 100%);
|
|
|
|
background-image: -webkit-linear-gradient(bottom, #fff 0, #889 100%);
|
|
|
|
background-image: -ms-linear-gradient(bottom, #fff 0, #889 100%);
|
|
|
|
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(1, #889));
|
|
|
|
position:relative;
|
|
|
|
top:1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment input { padding: 2px; }
|
|
|
|
|
|
|
|
#replymessage { margin-top: 5px; }
|
|
|
|
|
|
|
|
.commentmeta {
|
|
|
|
color: #fff;
|
|
|
|
background-color: #8ea0b2;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
padding: 0 0 0 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.commentdate { color: #bfcede; }
|
2012-04-21 21:59:45 +02:00
|
|
|
|
2019-08-16 01:28:42 +02:00
|
|
|
#filewrap {
|
|
|
|
transition: background-color 0.75s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.highlight {
|
|
|
|
background-color: #ffdd86;
|
|
|
|
transition: background-color 0.2s ease-in;
|
|
|
|
}
|
|
|
|
|
2012-04-21 21:59:45 +02:00
|
|
|
img.vizhash {
|
2012-08-26 00:49:11 +02:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
left: -3px;
|
2013-02-23 15:11:45 +01:00
|
|
|
}
|
2015-08-22 17:40:26 +02:00
|
|
|
|
|
|
|
#prettyprint {
|
2015-08-22 22:46:35 +02:00
|
|
|
color: #000000;
|
2015-08-22 17:40:26 +02:00
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
2015-09-12 17:33:16 +02:00
|
|
|
|
2015-10-19 19:39:45 +02:00
|
|
|
#prettyprint.prettyprinted {
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2015-09-12 17:33:16 +02:00
|
|
|
#cleartext {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cleartext * {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cleartext ol {
|
|
|
|
list-style: auto;
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cleartext ul {
|
|
|
|
list-style: disc;
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cleartext h1, #cleartext h2, #cleartext h3, #cleartext h4, #cleartext h5, #cleartext h6 {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cleartext h1 {
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cleartext h2 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cleartext h3 {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|