Skip to content

Instantly share code, notes, and snippets.

@roopunk
Created March 24, 2012 05:43
Show Gist options
  • Save roopunk/2178724 to your computer and use it in GitHub Desktop.
Save roopunk/2178724 to your computer and use it in GitHub Desktop.
CSS for the sharebox example at metageeks
*
{
font-family:arial;
border:none;
outline:none;
font-size:10pt;
}
#submit /* the button */
{
padding:8px;
background:#9eca80;
width:52px;
border-radius:2px;
color:#fff;
cursor:pointer;
text-align:center;
font-size:80%;
font-weight:bold;
}
#sharebox
{
width:500px;
border:1px solid #ddd;
}
#a
{
display:none;
padding: 10px;
color:#000;
position:relative;
}
#b
{
padding:10px;
min-height:15px;
cursor:text;
}
#close, #textbox
{
float:left;
}
#textbox
{
width:450px;
min-height:20px;
outline:none;
min-height:50px;
}
#close
{
background: no-repeat url(bg.png) -33px -31px;
height: 9px;
width: 9px;
cursor: pointer;
right: 11px;
margin: 1px;
position: absolute;
top: 11px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment