Removed unite character and optimized code
This commit is contained in:
parent
87b83bb438
commit
f0d8ebcb92
|
@ -8,9 +8,9 @@ body {
|
|||
|
||||
textarea {
|
||||
background: transparent;
|
||||
border: 0px;
|
||||
border: 0;
|
||||
color: #fff;
|
||||
padding: 0px;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
font-family: monospace;
|
||||
|
@ -28,7 +28,7 @@ textarea {
|
|||
z-index: -1000;
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
left: 0px;
|
||||
left: 0;
|
||||
width: 30px; /* 30 to get 20 away from box */
|
||||
font-size: 13px;
|
||||
font-family: monospace;
|
||||
|
@ -39,17 +39,17 @@ textarea {
|
|||
/* code box when locked */
|
||||
|
||||
#box {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
border: 0px;
|
||||
border: 0;
|
||||
outline: none;
|
||||
font-size: 13px;
|
||||
overflow: inherit;
|
||||
}
|
||||
|
||||
#box code {
|
||||
padding: 0px;
|
||||
padding: 0;
|
||||
background: transparent !important; /* don't hide hastebox */
|
||||
}
|
||||
|
||||
|
@ -57,8 +57,8 @@ textarea {
|
|||
|
||||
#key {
|
||||
position: fixed;
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
top: 0;
|
||||
right: 0;
|
||||
z-index: +1000; /* watch out */
|
||||
}
|
||||
|
||||
|
@ -70,8 +70,8 @@ textarea {
|
|||
|
||||
#box2 {
|
||||
background: #08323c;
|
||||
font-size: 0px;
|
||||
padding: 0px 5px;
|
||||
font-size: 0;
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
#box1 a.logo, #box1 a.logo:visited {
|
||||
|
@ -98,20 +98,23 @@ textarea {
|
|||
}
|
||||
|
||||
#box2 .function.enabled:hover {
|
||||
cursor: hand;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#box2 .function.enabled:hover {
|
||||
cursor: hand;
|
||||
}
|
||||
|
||||
#pointer {
|
||||
display: block;
|
||||
height: 5px;
|
||||
width: 10px;
|
||||
background: url(hover-dropdown-tip.png);
|
||||
bottom: 0px;
|
||||
bottom: 0;
|
||||
position: absolute;
|
||||
margin: auto;
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
#box3, #messages li {
|
||||
|
@ -133,30 +136,74 @@ textarea {
|
|||
font-weight: normal;
|
||||
}
|
||||
|
||||
#box2 .function.save { background-position: -5px top; }
|
||||
#box2 .function.enabled.save { background-position: -5px center; }
|
||||
#box2 .function.enabled.save:hover { background-position: -5px bottom; }
|
||||
#box2 .function.save {
|
||||
background-position: -5px top;
|
||||
}
|
||||
|
||||
#box2 .function.new { background-position: -42px top; }
|
||||
#box2 .function.enabled.new { background-position: -42px center; }
|
||||
#box2 .function.enabled.new:hover { background-position: -42px bottom; }
|
||||
#box2 .function.enabled.save {
|
||||
background-position: -5px center;
|
||||
}
|
||||
|
||||
#box2 .function.duplicate { background-position: -79px top; }
|
||||
#box2 .function.enabled.duplicate { background-position: -79px center; }
|
||||
#box2 .function.enabled.duplicate:hover { background-position: -79px bottom; }
|
||||
#box2 .function.enabled.save:hover {
|
||||
background-position: -5px bottom;
|
||||
}
|
||||
|
||||
#box2 .function.raw { background-position: -116px top; }
|
||||
#box2 .function.enabled.raw { background-position: -116px center; }
|
||||
#box2 .function.enabled.raw:hover { background-position: -116px bottom; }
|
||||
#box2 .function.new {
|
||||
background-position: -42px top;
|
||||
}
|
||||
|
||||
#box2 .function.twitter { background-position: -153px top; }
|
||||
#box2 .function.enabled.twitter { background-position: -153px center; }
|
||||
#box2 .function.enabled.twitter:hover { background-position: -153px bottom; }
|
||||
#box2 .button-picture{ border-width: 0; font-size: inherit; }
|
||||
#box2 .function.enabled.new {
|
||||
background-position: -42px center;
|
||||
}
|
||||
|
||||
#box2 .function.enabled.new:hover {
|
||||
background-position: -42px bottom;
|
||||
}
|
||||
|
||||
#box2 .function.duplicate {
|
||||
background-position: -79px top;
|
||||
}
|
||||
|
||||
#box2 .function.enabled.duplicate {
|
||||
background-position: -79px center;
|
||||
}
|
||||
|
||||
#box2 .function.enabled.duplicate:hover {
|
||||
background-position: -79px bottom;
|
||||
}
|
||||
|
||||
#box2 .function.raw {
|
||||
background-position: -116px top;
|
||||
}
|
||||
|
||||
#box2 .function.enabled.raw {
|
||||
background-position: -116px center;
|
||||
}
|
||||
|
||||
#box2 .function.enabled.raw:hover {
|
||||
background-position: -116px bottom;
|
||||
}
|
||||
|
||||
#box2 .function.twitter {
|
||||
background-position: -153px top;
|
||||
}
|
||||
|
||||
#box2 .function.enabled.twitter {
|
||||
background-position: -153px center;
|
||||
}
|
||||
|
||||
#box2 .function.enabled.twitter:hover {
|
||||
background-position: -153px bottom;
|
||||
}
|
||||
|
||||
#box2 .button-picture {
|
||||
border-width: 0;
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
#messages {
|
||||
position: fixed;
|
||||
top:0px;
|
||||
top: 0;
|
||||
right: 138px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
@ -172,4 +219,3 @@ textarea {
|
|||
#messages li.error {
|
||||
background: rgba(102, 8, 0, 0.8);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user