12 lines
133 B
CSS
12 lines
133 B
CSS
|
/* Commons */
|
||
|
a {
|
||
|
color: #555;
|
||
|
}
|
||
|
|
||
|
/* Remove Focus glow */
|
||
|
.btn:focus,
|
||
|
.form-control:focus {
|
||
|
outline: none;
|
||
|
box-shadow: none;
|
||
|
}
|