Ajax Loader
×
HTML
<input type="checkbox" name="cc" checked value=""> 
1
<input type="checkbox" name="cc" checked value=""> 
 
CSS
input:enabled {
1
input:enabled {
2
  background-color:black;
3
  height:150px;  
4
  width:150px; 
5
     -webkit-transition: all .2s ease;
6
  -moz-transition: all .2s ease;
7
  -o-transition: all .2s ease;
8
  -ms-transition: all .2s ease;
9
  transition: all .2s ease;
10
}
11
input:checked {
12
  width:100px;
13
  padding:50px;
14
}
 

Untitled

CSSDeck G+