2011-11-18 22:23:23 +00:00
|
|
|
body {
|
|
|
|
background: #002B36;
|
2011-11-19 05:53:38 +00:00
|
|
|
padding: 20px;
|
2011-11-18 22:23:23 +00:00
|
|
|
margin: 0px;
|
|
|
|
}
|
2011-11-18 23:17:49 +00:00
|
|
|
|
2011-11-28 14:56:06 +00:00
|
|
|
/* textarea */
|
|
|
|
|
2011-11-18 22:23:23 +00:00
|
|
|
textarea {
|
|
|
|
background: transparent;
|
|
|
|
border: 0px;
|
|
|
|
color: #fff;
|
2011-11-19 05:53:38 +00:00
|
|
|
padding: 0px;
|
2011-11-18 22:23:23 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
font-family: monospace;
|
|
|
|
outline: none;
|
|
|
|
resize: none;
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
2011-11-18 23:17:49 +00:00
|
|
|
|
2011-11-28 14:56:06 +00:00
|
|
|
/* code box when locked */
|
|
|
|
|
2011-11-18 22:23:23 +00:00
|
|
|
#box {
|
|
|
|
padding: 0px;
|
2011-11-21 14:56:33 +00:00
|
|
|
margin: 0px;
|
2011-11-18 22:23:23 +00:00
|
|
|
width: 100%;
|
2011-11-21 14:59:14 +00:00
|
|
|
border: 0px;
|
|
|
|
outline: none;
|
2011-11-18 22:23:23 +00:00
|
|
|
}
|
2011-11-18 23:17:49 +00:00
|
|
|
|
2011-11-18 22:23:23 +00:00
|
|
|
#box code {
|
2011-11-19 05:53:38 +00:00
|
|
|
padding: 0px;
|
2011-11-18 23:17:49 +00:00
|
|
|
background: transparent !important; /* don't hide hastebox */
|
|
|
|
}
|
|
|
|
|
2011-11-28 14:56:06 +00:00
|
|
|
/* key */
|
|
|
|
|
2011-11-18 23:17:49 +00:00
|
|
|
#key {
|
2011-11-22 01:52:35 +00:00
|
|
|
position: fixed;
|
2011-11-23 16:31:50 +00:00
|
|
|
top: 0px;
|
|
|
|
right: 0px;
|
|
|
|
z-index: +1000; /* watch out */
|
|
|
|
}
|
|
|
|
|
2011-11-28 14:56:06 +00:00
|
|
|
#box1 {
|
2011-11-23 16:31:50 +00:00
|
|
|
padding: 5px;
|
|
|
|
text-align: center;
|
|
|
|
background: #00222b;
|
|
|
|
}
|
|
|
|
|
2011-11-28 14:56:06 +00:00
|
|
|
#box2 {
|
2011-11-23 16:31:50 +00:00
|
|
|
background: #08323c;
|
|
|
|
font-size: 0px;
|
2011-11-28 14:39:31 +00:00
|
|
|
padding: 0px 5px;
|
2011-11-23 16:31:50 +00:00
|
|
|
}
|
|
|
|
|
2011-11-28 14:56:06 +00:00
|
|
|
#box1 a.logo, #box1 a.logo:visited {
|
2011-11-23 16:31:50 +00:00
|
|
|
display: inline-block;
|
|
|
|
background: url(logo.png);
|
|
|
|
width: 126px;
|
|
|
|
height: 42px;
|
|
|
|
}
|
|
|
|
|
2011-11-28 14:56:06 +00:00
|
|
|
#box1 a.logo:hover {
|
2011-11-23 16:31:50 +00:00
|
|
|
background-position: 0 bottom;
|
|
|
|
}
|
|
|
|
|
2011-11-28 14:56:06 +00:00
|
|
|
#box2 .function {
|
2011-11-23 16:31:50 +00:00
|
|
|
background: url(function-icons.png);
|
|
|
|
width: 32px;
|
|
|
|
height: 37px;
|
|
|
|
display: inline-block;
|
2011-11-28 14:39:31 +00:00
|
|
|
position: relative;
|
2011-11-18 23:17:49 +00:00
|
|
|
}
|
|
|
|
|
2011-11-28 14:56:06 +00:00
|
|
|
#box2 .link embed {
|
2011-11-27 20:34:09 +00:00
|
|
|
vertical-align: bottom; /* fix for zeroClipboard style */
|
|
|
|
}
|
|
|
|
|
2011-11-28 14:56:06 +00:00
|
|
|
#box2 .function.enabled:hover {
|
2011-11-23 16:31:50 +00:00
|
|
|
cursor: hand;
|
|
|
|
cursor: pointer;
|
2011-11-18 22:23:23 +00:00
|
|
|
}
|
2011-11-23 16:31:50 +00:00
|
|
|
|
2011-11-28 14:39:31 +00:00
|
|
|
#pointer {
|
|
|
|
display: block;
|
|
|
|
height: 5px;
|
|
|
|
width: 10px;
|
|
|
|
background: url(hover-dropdown-tip.png);
|
|
|
|
bottom: 0px;
|
|
|
|
position: absolute;
|
|
|
|
margin: auto;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
}
|
|
|
|
|
2011-11-28 14:56:06 +00:00
|
|
|
#box3 {
|
2011-11-23 16:31:50 +00:00
|
|
|
background: #173e48;
|
|
|
|
font-family: Helvetica, sans-serif;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 14px;
|
|
|
|
padding: 10px 15px;
|
|
|
|
}
|
|
|
|
|
2011-11-28 14:56:06 +00:00
|
|
|
#box3 .label {
|
2011-11-23 16:31:50 +00:00
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2011-11-28 14:56:06 +00:00
|
|
|
#box3 .shortcut {
|
2011-11-23 16:31:50 +00:00
|
|
|
color: #c4dce3;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2011-11-28 15:50:33 +00:00
|
|
|
#box2 .function.save { background-position: -5px top; }
|
|
|
|
#box2 .function.enabled.save { background-position: -5px center; }
|
|
|
|
#box2 .function.enabled.save:hover { background-position: -5px bottom; }
|
2011-11-23 16:31:50 +00:00
|
|
|
|
2011-11-28 15:50:33 +00:00
|
|
|
#box2 .function.new { background-position: -42px top; }
|
|
|
|
#box2 .function.enabled.new { background-position: -42px center; }
|
|
|
|
#box2 .function.enabled.new:hover { background-position: -42px bottom; }
|
2011-11-23 16:31:50 +00:00
|
|
|
|
2011-11-28 15:50:33 +00:00
|
|
|
#box2 .function.duplicate { background-position: -79px top; }
|
|
|
|
#box2 .function.enabled.duplicate { background-position: -79px center; }
|
|
|
|
#box2 .function.enabled.duplicate:hover { background-position: -79px bottom; }
|
2011-11-23 16:31:50 +00:00
|
|
|
|
2011-11-28 15:50:33 +00:00
|
|
|
#box2 .function.link { background-position: -116px top; }
|
|
|
|
#box2 .function.enabled.link { background-position: -116px center; }
|
|
|
|
#box2 .function.enabled.link:hover { background-position: -116px bottom; }
|
2011-11-23 16:31:50 +00:00
|
|
|
|
2011-11-28 15:50:33 +00:00
|
|
|
#box2 .function.twitter { background-position: -153px top; }
|
|
|
|
#box2 .function.enabled.twitter { background-position: -153px center; }
|
|
|
|
#box2 .function.enabled.twitter:hover { background-position: -153px bottom; }
|