1input:focus {
2 outline: none !important;
3 border-color: #719ECE;
4 box-shadow: 0 0 10px #719ECE;
5}
6textarea:focus {
7 outline: none !important;
8 border-color: #719ECE;
9 box-shadow: 0 0 10px #719ECE;
10}
1//SCSS format
2
3input{
4 &:focus {
5 outline: none !important;
6 }
7}
8textarea{
9 &:focus {
10 outline: none !important;
11 }
12}
13
14
1.input:focus {
2 outline: none !important;
3 border:1px solid red;
4 box-shadow: 0 0 10px #719ECE;
5}