Advertisement
perazite

CSS3: input field focus styles

Dec 19th, 2012
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.36 KB | None | 0 0
  1. .class {
  2.     background-color: #FFFFFF;
  3.     border: 1px solid #CCCCCC;
  4.     box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  5.     transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
  6. }
  7. .class:focus {
  8.     border-color: rgba(82, 168, 236, 0.8);
  9.     box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
  10.     outline: 0 none;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement