Skip to content

Instantly share code, notes, and snippets.

@noahcampbell
Created October 28, 2010 17:51
Show Gist options
  • Save noahcampbell/651911 to your computer and use it in GitHub Desktop.
Save noahcampbell/651911 to your computer and use it in GitHub Desktop.
Command Line Example
.command {
width: 1024px;
height: 42px;
margin: 25px 33px;
}
.command input[type=submit] {
height: 46px;
width: 44px;
background-color: #EEE;
border: 3px solid #777;
border-left-width: 0px;
border-radius: 0px 5px 5px 0px;
font-size: 46px;
line-height: 25px;
}
.command input[type=text] {
padding: 0px 7px;
width: 960px;
height: 40px;
float: left;
border: 3px solid #777;
border-right-width: 0px;
font-family: Monaco, 'Courier New', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
font-size: 18px;
border-radius: 5px 0px 0px 5px;
}
<div class="command">
<input type="text" placeholder=">"/>
<input type="submit" value="&#x224B;">
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment