mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
152 lines
3.2 KiB
CSS
152 lines
3.2 KiB
CSS
body {
|
|
color: #000000;
|
|
font-family: arial;
|
|
width: 520px;
|
|
height: 400px;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#wrapper {
|
|
width: 520px;
|
|
height: 400px;
|
|
}
|
|
|
|
#metadata {
|
|
float: left;
|
|
width: 200px;
|
|
height: 380px;
|
|
padding: 10px;
|
|
background-color: #ffffff;
|
|
text-align: center;
|
|
}
|
|
#metadata #basename {
|
|
font-family: sans-serif;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
margin: 10px 0;
|
|
padding: 5px;
|
|
color: #000000;
|
|
word-break: break-all;
|
|
background-color: #f9f9f9;
|
|
border: 1px solid #f0f0f0;
|
|
}
|
|
#metadata #filesize,
|
|
#metadata #filehash {
|
|
margin-bottom: 10px;
|
|
word-break: break-all;
|
|
text-align: left;
|
|
color: #666666;
|
|
display: none;
|
|
}
|
|
#metadata .label {
|
|
font-size: 12px;
|
|
}
|
|
#metadata .value {
|
|
font-weight: bold;
|
|
font-size: 12px;
|
|
}
|
|
#metadata #close-on-finish-wrapper {
|
|
margin-bottom: 10px;
|
|
}
|
|
#metadata #close-on-finish-wrapper input {
|
|
cursor: pointer;
|
|
}
|
|
#metadata #close-on-finish-wrapper label {
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
}
|
|
|
|
ul#log {
|
|
float: left;
|
|
width: 299px;
|
|
height: 400px;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
background-color: #f0f0f0;
|
|
overflow: auto;
|
|
word-wrap: break-word;
|
|
font-family: monospace;
|
|
border-left: 1px solid #000000;
|
|
}
|
|
ul#log li {
|
|
margin: 10px;
|
|
padding: 10px;
|
|
border-bottom: 1px solid #aaaaaa;
|
|
}
|
|
ul#log .weblog {
|
|
color: #009900;
|
|
font-weight: bold;
|
|
}
|
|
ul#log .weblog .progress {
|
|
color: #0000cc;
|
|
}
|
|
|
|
ul#log .weblog-error {
|
|
color: #ff0000;
|
|
font-weight: bold;
|
|
}
|
|
|
|
ul#log li#loading {
|
|
text-align: center;
|
|
padding: 60px 30px;
|
|
border-bottom: 0;
|
|
}
|
|
ul#log li#loading .calculating {
|
|
color: #666666;
|
|
font-style: italic;
|
|
font-size: 12px;
|
|
}
|
|
ul#log #close-countdown {
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
}
|
|
|
|
.button {
|
|
-moz-box-shadow:inset 0px 1px 0px 0px #d197fe;
|
|
-webkit-box-shadow:inset 0px 1px 0px 0px #d197fe;
|
|
box-shadow:inset 0px 1px 0px 0px #d197fe;
|
|
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a53df6), color-stop(1, #7c16cb) );
|
|
background:-moz-linear-gradient( center top, #a53df6 5%, #7c16cb 100% );
|
|
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a53df6', endColorstr='#7c16cb');
|
|
background-color:#a53df6;
|
|
-webkit-border-top-left-radius:0px;
|
|
-moz-border-radius-topleft:0px;
|
|
border-top-left-radius:0px;
|
|
-webkit-border-top-right-radius:0px;
|
|
-moz-border-radius-topright:0px;
|
|
border-top-right-radius:0px;
|
|
-webkit-border-bottom-right-radius:0px;
|
|
-moz-border-radius-bottomright:0px;
|
|
border-bottom-right-radius:0px;
|
|
-webkit-border-bottom-left-radius:0px;
|
|
-moz-border-radius-bottomleft:0px;
|
|
border-bottom-left-radius:0px;
|
|
text-indent:0;
|
|
border:1px solid #9c33ed;
|
|
display:inline-block;
|
|
color:#ffffff;
|
|
font-family:Arial;
|
|
font-size:13px;
|
|
font-weight:bold;
|
|
font-style:normal;
|
|
text-decoration:none;
|
|
text-align:center;
|
|
text-shadow:1px 1px 0px #7d15cd;
|
|
}
|
|
.button:hover {
|
|
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #7c16cb), color-stop(1, #a53df6) );
|
|
background:-moz-linear-gradient( center top, #7c16cb 5%, #a53df6 100% );
|
|
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#7c16cb', endColorstr='#a53df6');
|
|
background-color:#7c16cb;
|
|
}
|
|
|
|
#button-wrapper {
|
|
text-align: center;
|
|
}
|
|
#copy-button {
|
|
display: none;
|
|
}
|
|
|