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

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

changement logo
champs locality/lieu desactives
+modif sur tapas.css et bas page frontend
+ ajout textes info xml et one transmission

File size: 3.7 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/* POSITIVE */
74button.option {
75    background-color: #F0FFF0;
76    color: #686868;
77    border-radius:8px;
78}
79
80button.option:hover {
81    //background-color: #E6EFC2;
82    border: 1px solid #ff5600;
83    color: #ff5600;
84}
85
86/* NEGATIVE */
87button.negative {
88    color: #d12f19;
89    border-radius:8px;
90}
91
92button.negative:hover {
93    background: #fbe3e4;
94    border: 1px solid #fbc2c4;
95    color: #d12f19;
96
97}
98
99/* DISABLE */
100button.disable, button.disable:hover {
101    border-radius:8px;
102    background-color: #CCCCCC;
103    border: 1px solid #dedede;
104    color: #565656;
105}
106
107/* BLUE BUTTON */
108button.blue_button {
109    background-image: url("../images/elements/button_middle_3.png");
110    background-repeat: repeat-x;
111    height: 39px;
112    float: right;
113    margin-right: 0;
114    border: 0;
115}
116
117.blue_button_text, .big_blue_button_text {
118    color: white;
119    font-size: 11px;
120    font-weight: bold;
121}
122
123button.big_blue_button {
124/*background-image: url("../images/logoNat_small.png");*/
125    background-image: url("../images/elements/big_button_middle_3.png");
126    background-repeat: repeat-x repeat-y;
127    height: 50px;
128    width: 50px;
129    float: right;
130    margin-right: 0;
131    border: 0;
132}
133
134.big_blue_button_text {
135    position: relative;
136    top: -3px;
137    font-size: 44px;
138}
139
140/* GRAY BUTTON */
141button.gray_button {
142    background-image: url("../images/elements/button_middle_gray.png");
143    background-repeat: repeat-x;
144    height: 41px;
145    float: right;
146    margin-right: 0;
147    position: relative;
148    top: -1px;
149}
150
151button.action_button {
152    margin-left: 5px;
153    margin-right: -3px;
154}
155
156/* RED BUTTON */
157button.red_button {
158    background-color: #8a68bb;
159    height: 40px;
160    float: right;
161    margin-right: 0;
162    border: 0;
163}
164
165
166
167.red_button_text {
168    color: white;
169    font-size: 11px;
170    font-weight: bold;
171
172}
173
174.red_button_text:hover {
175    color : #bfafd6;
176    font-size: 11px;
177    font-weight: bold;
178}
179
180button.red_button:hover {
181    background-color: #bfafd6;
182
183}
184
185/*  */
186button.tapas1 {
187    background-color: #bfafd6;
188    height: 40px;
189    float: right;
190    margin-right: 0;
191    border: 0;
192    border-radius:8px;
193}
194
195
196
197.tapas1_text {
198    color: white;
199    font-size: 11px;
200    font-weight: bold;
201}
202
203.tapas1:hover {
204    color : #bfafd6;
205    font-size: 11px;
206    font-weight: bold;
207}
208
209button.tapas1:hover {
210    background-color: #574176;
211
212}
213
214
Note: See TracBrowser for help on using the repository browser.