Skip to content

Instantly share code, notes, and snippets.

@mejarc
Created March 16, 2012 16:58
Show Gist options
  • Save mejarc/2051114 to your computer and use it in GitHub Desktop.
Save mejarc/2051114 to your computer and use it in GitHub Desktop.
Styles to mimic Facebook button styling
body {
background: #fff;
color: #333;
font: normal 13px/1.2em "lucida grande", tahoma, verdana, arial, sans-serif;
}
a, a:visited {
color: #3b5998;
}
header {
font-size: 22px;
line-height: 30px;
}
input {
border: 1px solid #d4dae8;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
font-size: 13px;
padding: 5px;
text-align: center;
}
input[type=text] {
padding: 5px 0;
}
input[type=button]:hover,
input:focus {
border-color: #9dacce;
}
input[type=button] {
background: #eceff6;
color: #3B5998;
cursor: pointer;
}
input[type=button].secondary {
background: #f7f7f7;
border-color: #ccc;
color: #666;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment