1button {
2 background: transparent;
3 box-shadow: 0px 0px 0px transparent;
4 border: 0px solid transparent;
5 text-shadow: 0px 0px 0px transparent;
6}
7
8button:hover {
9 background: transparent;
10 box-shadow: 0px 0px 0px transparent;
11 border: 0px solid transparent;
12 text-shadow: 0px 0px 0px transparent;
13}
14
15button:active {
16 outline: none;
17 border: none;
18}
19
20button:focus {
21 outline: 0;
22}
1button{
2 background: none;
3 outline: none;
4 box-shadow: none
5 border-radius: 0px;
6}