[装飾系]Input Text フォーカスでふわっと影が出る

CSS HTML
 
 

フォーカスでふわっと影が出る

シンプルなInput Textデザインですが、フォーカスでふわっと影が出ます。

browser:  ✔︎ ✔︎ ✔︎ 
ニャン易度 
<div class="cp_iptxt">
  <label class="ef">
  <input type="text" placeholder="お名前">
  </label>
</div>
<div class="cp_iptxt">
  <label class="ef">
  <input type="text" placeholder="E-Mail">
  </label>
</div>
.cp_iptxt {
  position: relative;
  width: 100%;
  margin: 40px 0;
}
.cp_iptxt input[type='text'] {
  font: 15px/1.6 sans-serif;
  box-sizing: border-box;
  width: 100%;
  padding: 0.3em;
  color: #aaaaaa;
  border: 1px solid #1b2538;
  border-radius: 4px;
  transition: 0.3s;
}
.ef input[type='text']:focus {
  border: 1px solid #da3c41;
  box-shadow: 0 0 5px 1px rgba(218,60,65, .5);
  outline: none;
}

copypet.jp

CSS3などで新たに追加された要素・装飾方法など、日々コードを書いていないと忘れてしまったり、ささっとプロトタイプを作る時などちょっとしたことに時間をかけている暇はない。そんな時に「あ〜、あれストックしときゃよかったなぁ」って困った自分用のストックブログです。カスタマイズなどがしやすいよう、昨今のweb制作に取り入れられる一般的なコードを中心に掲載しています。

More Info

こんな記事はいかがですか?