source: tapas/web/resources/css/button.css @ 817

Last change on this file since 817 was 817, checked in by rboipsl, 9 years ago

changement logo
champs locality/lieu desactives

File size: 3.5 KB
Line 
1/** ****************************************************************** **/
2/** http://particletree.com/features/rediscovering-the-button-element/ **/
3/** ****************************************************************** **/
4
5/* BUTTONS */
6
7button {
8    -moz-border-radius: 4px 4px 4px 4px;
9    -webkit-border-radius: 4px 4px 4px 4px;
10
11    display: block;
12    float: left;
13    margin: 0 11px 0 0;
14    background-color: #f5f5f5;
15    border: 1px solid #dedede;
16    border-top: 1px solid #eee;
17    border-left: 1px solid #eee;
18
19    font-family: "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
20    font-size: 100%;
21    line-height: 130%;
22    text-decoration: none;
23    font-weight: bold;
24    color: #565656;
25    cursor: pointer;
26
27    width: auto;
28    overflow: visible;
29    padding: 4px 6px 3px 6px; /* IE6 */
30}
31
32button[type] {
33    padding: 5px 10px 5px 7px; /* Firefox */
34    line-height: 17px; /* Safari */
35}
36
37*:first-child+html button[type] {
38    padding: 4px 10px 3px 7px; /* IE7 */
39}
40
41.small {
42    font-size: 80%;
43}
44
45button img {
46    margin: 0 3px -3px 0 !important;
47    padding: 0;
48    border: none;
49    width: 16px;
50    height: 16px;
51}
52
53/* STANDARD */
54button:hover {
55    background-color: #dff4ff;
56    border: 1px solid #c2e1ef;
57    color: #336699;
58}
59
60/* POSITIVE */
61button.positive {
62    background-color: #F0FFF0;
63    color: #529214;
64    border-radius:8px;
65}
66
67button.positive:hover {
68    background-color: #E6EFC2;
69    border: 1px solid #C6D880;
70    color: #529214;
71}
72
73/* NEGATIVE */
74button.negative {
75    color: #d12f19;
76    border-radius:8px;
77}
78
79button.negative:hover {
80    background: #fbe3e4;
81    border: 1px solid #fbc2c4;
82    color: #d12f19;
83
84}
85
86/* DISABLE */
87button.disable, button.disable:hover {
88    border-radius:8px;
89    background-color: #CCCCCC;
90    border: 1px solid #dedede;
91    color: #565656;
92}
93
94/* BLUE BUTTON */
95button.blue_button {
96    background-image: url("../images/elements/button_middle_3.png");
97    background-repeat: repeat-x;
98    height: 39px;
99    float: right;
100    margin-right: 0;
101    border: 0;
102}
103
104.blue_button_text, .big_blue_button_text {
105    color: white;
106    font-size: 11px;
107    font-weight: bold;
108}
109
110button.big_blue_button {
111/*background-image: url("../images/logoNat_small.png");*/
112    background-image: url("../images/elements/big_button_middle_3.png");
113    background-repeat: repeat-x repeat-y;
114    height: 50px;
115    width: 50px;
116    float: right;
117    margin-right: 0;
118    border: 0;
119}
120
121.big_blue_button_text {
122    position: relative;
123    top: -3px;
124    font-size: 44px;
125}
126
127/* GRAY BUTTON */
128button.gray_button {
129    background-image: url("../images/elements/button_middle_gray.png");
130    background-repeat: repeat-x;
131    height: 41px;
132    float: right;
133    margin-right: 0;
134    position: relative;
135    top: -1px;
136}
137
138button.action_button {
139    margin-left: 5px;
140    margin-right: -3px;
141}
142
143/* RED BUTTON */
144button.red_button {
145    background-color: #8a68bb;
146    height: 40px;
147    float: right;
148    margin-right: 0;
149    border: 0;
150}
151
152
153
154.red_button_text {
155    color: white;
156    font-size: 11px;
157    font-weight: bold;
158
159}
160
161.red_button_text:hover {
162    color : #bfafd6;
163    font-size: 11px;
164    font-weight: bold;
165}
166
167button.red_button:hover {
168    background-color: #bfafd6;
169
170}
171
172/*  */
173button.tapas1 {
174    background-color: #bfafd6;
175    height: 40px;
176    float: right;
177    margin-right: 0;
178    border: 0;
179    border-radius:8px;
180}
181
182
183
184.tapas1_text {
185    color: white;
186    font-size: 11px;
187    font-weight: bold;
188}
189
190.tapas1:hover {
191    color : #bfafd6;
192    font-size: 11px;
193    font-weight: bold;
194}
195
196button.tapas1:hover {
197    background-color: #574176;
198
199}
200
201
Note: See TracBrowser for help on using the repository browser.