onionshare/onionshare_gui/static/style.css

174 lines
3.5 KiB
CSS
Raw Normal View History

2014-06-19 17:51:17 -04:00
html, body {
height: 100%;
}
body {
color: #000000;
font-family: arial;
2014-06-08 13:15:39 -04:00
margin: 0;
padding: 0;
2014-06-19 17:51:17 -04:00
background-color: #f0f0f0;
min-width: 550px;
min-height: 300px;
}
2014-06-08 13:15:39 -04:00
#wrapper {
2014-06-19 17:51:17 -04:00
position: relative;
height: 100%;
}
#header {
height: 80px;
padding: 10px;
2014-06-09 21:07:18 -04:00
background-color: #ffffff;
2014-06-08 13:15:39 -04:00
}
#header #logo {
float: left;
width: 80px;
height: 80px;
margin-right: 10px;
}
#header #header-content {
float: left;
width: 440px;
height: 80px;
}
#header #header-content #basename {
2014-06-08 13:15:39 -04:00
font-family: sans-serif;
font-size: 20px;
2014-06-08 13:15:39 -04:00
font-weight: bold;
color: #000000;
white-space: nowrap;
overflow: hidden;
2014-06-09 21:07:18 -04:00
}
#header #header-content #filesize,
#header #header-content #filehash {
margin-top: 5px;
2014-06-09 21:07:18 -04:00
word-break: break-all;
text-align: left;
color: #666666;
display: none;
}
#header #header-content .label {
2014-06-09 21:07:18 -04:00
font-size: 12px;
}
#header #header-content .value {
2014-06-09 21:07:18 -04:00
font-weight: bold;
font-size: 12px;
2014-06-08 13:15:39 -04:00
}
ul#log {
margin: 0;
padding: 0;
list-style: none;
overflow: auto;
2014-06-08 13:15:39 -04:00
word-wrap: break-word;
font-family: monospace;
border-bottom: 1px solid #000000;
}
2014-06-08 13:15:39 -04:00
ul#log li {
margin: 0 10px;
2014-06-08 13:15:39 -04:00
padding: 10px;
border-bottom: 1px solid #cccccc;
2014-06-08 13:15:39 -04:00
}
ul#log .weblog {
color: #009900;
font-weight: bold;
}
ul#log .weblog .progress {
color: #0000cc;
}
2014-06-08 13:15:39 -04:00
ul#log .weblog-error {
2014-06-09 21:07:18 -04:00
color: #ff0000;
font-weight: bold;
}
2014-06-09 21:07:18 -04:00
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;
}
2014-06-09 21:07:18 -04:00
#footer {
2014-06-19 17:51:17 -04:00
position: absolute;
bottom: 0;
height: 20px;
background-color: #ffffff;
2014-06-19 17:51:17 -04:00
padding: 10px 0;
width: 100%;
border-top: 1px solid #000000;
}
#footer #close-on-finish-wrapper {
float: left;
2014-06-19 17:51:17 -04:00
margin-left: 5px;
}
#footer #close-on-finish-wrapper input {
cursor: pointer;
}
#footer #close-on-finish-wrapper label {
cursor: pointer;
font-size: 12px;
}
#footer #copy-button-wrapper {
float: right;
2014-06-19 17:51:17 -04:00
margin-right: 5px;
margin-top: -3px;
}
#footer #copy-button {
display: none;
}
.button {
2014-06-09 21:07:18 -04:00
-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;
2014-06-09 21:07:18 -04:00
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;
2014-06-09 21:07:18 -04:00
text-shadow:1px 1px 0px #7d15cd;
}
.button:hover {
2014-06-09 21:07:18 -04:00
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;
}
2014-06-19 17:51:17 -04:00
.clear {
clear: both;
}