Created
February 9, 2012 20:07
-
-
Save angrytoast/1782685 to your computer and use it in GitHub Desktop.
Firecat css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#firecat h1 { | |
margin: .2em 0 .6em; | |
padding: 0; | |
font-size: 1.2em; | |
} | |
#firecat { | |
position: fixed; | |
z-index: 999; | |
top: 10px; | |
right: 10px; | |
background: #fff; | |
width: 1000px; | |
padding: 10px; | |
height: 450px; | |
border: 1px solid #aaa; | |
font: 400 1em arial; | |
-webkit-box-shadow: 0 0 20px rgba(0,0,0,.5); | |
-moz-box-shadow: 0 0 20px rgba(0,0,0,.5); | |
box-shadow: 0 0 20px rgba(0,0,0,.5); | |
} | |
#firecat .ctrl { text-align: right } | |
#firecat .show { display: none } | |
#firecat .hide { display: inline } | |
#frecatCon { | |
position: absolute; | |
right: 10px; | |
width: 450px; | |
height: 382px; | |
overflow-y: auto; | |
background: #eee; | |
} | |
#firecatSel { | |
overflow-y: auto; | |
position: absolute; | |
z-index: 999; | |
top: 10px; | |
left: -1px; | |
background: #eee; | |
padding: 10px; | |
width: 480px; | |
height: 180px; | |
border: 1px solid #aaa; | |
font: 400 1em arial; | |
margin-left: 10px; | |
-webkit-box-shadow: inset 0 0 20px rgba(0,0,0,.8); | |
-moz-box-shadow: inset 0 0 20px rgba(0,0,0,.8); | |
box-shadow: inset 0 0 20px rgba(0,0,0,.8); | |
} | |
#firecatSel .del{ | |
display:inline-block;border:1px solid #aaa;padding:1px 5px;background:#eee;margin-left:5px;color:#888;border-radius:5px;cursor:pointer; | |
} | |
#firecat .maintxt { | |
font-size: .8em; | |
width: 470px; | |
max-height: 400px; | |
margin-right: 10px; | |
float: right; | |
} | |
#firecat .txt { | |
font-size: .8em; | |
font-family: courier; | |
} | |
#firecatResults { | |
overflow-y: auto; | |
position: absolute; | |
z-index: 999; | |
top: 210px; | |
left: -1px; | |
padding: 10px; | |
width: 480px; | |
height: 180px; | |
font: 400 1em arial; | |
margin-left: 10px; | |
} | |
#firecat .recCat { | |
display: block; | |
padding: 3px 5px; | |
background: #f5faff; | |
border: 1px solid #aaa; | |
margin-bottom: 2px; | |
cursor: pointer; | |
} | |
#firecat .recCat:hover { background: #ccf } | |
#firecat .searchTerm { | |
background: pink; | |
padding: 5px; | |
-webkit-border-radius: 5px; | |
-moz-border-radius: 5px; | |
border-radius: 5px; | |
} | |
#firecat .delete { | |
margin: 0; | |
padding: 0; | |
opacity: .2; | |
cursor: pointer; | |
} | |
#firecat .delete:hover { opacity: 1 } | |
#fcConfirm { | |
-webkit-box-shadow: inset 0 0 20px rgba(0,0,0,.8); | |
-moz-box-shadow: inset 0 0 20px rgba(0,0,0,.8); | |
box-shadow: inset 0 0 20px rgba(0,0,0,.8); | |
} | |
#fcConfirm .y { color: green } | |
#fcConfirm .n { color: red } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment