Skip to content

Instantly share code, notes, and snippets.

@groenewege
Created October 26, 2012 08:34
Show Gist options
  • Save groenewege/3957642 to your computer and use it in GitHub Desktop.
Save groenewege/3957642 to your computer and use it in GitHub Desktop.
css - simple input
.simple-input {
display: block;
padding: 5px;
border: 4px solid #F1B720;
border-radius: 5px;
color: #333;
transition: all 0.3s ease-out;
}
.simple-input:hover {
border-radius: 8px
}
.simple-input:focus {
outline: none;
border-radius: 8px;
border-color: #EBD292;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment