11@import " Variables" ;
22
3+ .form-horizontal {
4+ margin-left : auto ;
5+ margin-right : auto ;
6+ }
7+
8+ .form-group {
9+ margin-right : -15px ;
10+ margin-left : -15px ;
11+ margin-bottom : 15px ;
12+ }
13+
14+ .form-control {
15+ display : block ;
16+ width : 100% ;
17+ // height: 34px;
18+ padding : 6px 12px ;
19+ font-size : 14px ;
20+ line-height : 1.42857143 ;
21+ color : #555 ;
22+ background-color : #fff ;
23+ background-image : none ;
24+ border : 1px solid #ccc ;
25+ border-radius : 4px ;
26+ box-shadow : inset 0 1px 1px rgba (0 , 0 , 0 , 0.075 );
27+ transition :
28+ border-color ease-in-out 0.15s ,
29+ box-shadow ease-in-out 0.15s ;
30+ transition :
31+ border-color ease-in-out 0.15s ,
32+ box-shadow ease-in-out 0.15s ;
33+ }
34+
35+ .form-control :focus {
36+ border-color : #66afe9 ;
37+ outline : 0 ;
38+ box-shadow :
39+ inset 0 1px 1px rgba (0 , 0 , 0 , 0.075 ),
40+ 0 0 8px rgba (102 , 175 , 233 , 0.6 );
41+ }
42+
43+ input [type = " checkbox" ],
44+ input [type = " radio" ] {
45+ margin : 4px 0 0 ;
46+ margin-top : 1px \9 ;
47+ line-height : normal ;
48+ }
49+
350textarea ,
451input [type = " text" ],
552input [type = " password" ],
@@ -50,17 +97,23 @@ input[type="color"]:focus,
5097}
5198
5299.btn {
100+ padding : 6px 12px ;
101+
53102 background : $primary-color ;
54103 color : $primary-color-opposite ;
55104 border-color : $button-border ;
56- box-shadow : 0px 1px 0px rgba (255 , 255 , 255 , 0.2 ) inset , 0px 1px 2px rgba (0 , 0 , 0 , 0.05 );
105+ box-shadow :
106+ 0px 1px 0px rgba (255 , 255 , 255 , 0.2 ) inset ,
107+ 0px 1px 2px rgba (0 , 0 , 0 , 0.05 );
57108}
58109
59110.btn :hover {
60111 background-color : $primary-color-active ;
61112 border-color : $button-border ;
62113 transition : background-position 0.2s linear 0s ;
63114 color : $primary-color-opposite ;
115+
116+ cursor : pointer ;
64117}
65118
66119.btn :active ,
@@ -79,4 +132,4 @@ input[type="checkbox"] {
79132
80133label {
81134 font-weight : normal !important ;
82- }
135+ }
0 commit comments