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
RevLine 
[376]1/** ****************************************************************** **/
2/** http://particletree.com/features/rediscovering-the-button-element/ **/
3/** ****************************************************************** **/
4
5/* BUTTONS */
6
[386]7button {
8    -moz-border-radius: 4px 4px 4px 4px;
9    -webkit-border-radius: 4px 4px 4px 4px;
[376]10
[386]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 */
[376]30}
[386]31
32button[type] {
33    padding: 5px 10px 5px 7px; /* Firefox */
34    line-height: 17px; /* Safari */
[376]35}
[386]36
37*:first-child+html button[type] {
38    padding: 4px 10px 3px 7px; /* IE7 */
[376]39}
[386]40
41.small {
42    font-size: 80%;
[376]43}
[386]44
45button img {
46    margin: 0 3px -3px 0 !important;
47    padding: 0;
48    border: none;
49    width: 16px;
50    height: 16px;
[376]51}
52
53/* STANDARD */
[386]54button:hover {
55    background-color: #dff4ff;
56    border: 1px solid #c2e1ef;
57    color: #336699;
[376]58}
59
60/* POSITIVE */
[386]61button.positive {
62    background-color: #F0FFF0;
63    color: #529214;
[816]64    border-radius:8px;
[386]65}
[376]66
[386]67button.positive:hover {
68    background-color: #E6EFC2;
69    border: 1px solid #C6D880;
70    color: #529214;
[376]71}
[386]72
73/* NEGATIVE */
74button.negative {
75    color: #d12f19;
[817]76    border-radius:8px;
[376]77}
[386]78
79button.negative:hover {
80    background: #fbe3e4;
81    border: 1px solid #fbc2c4;
82    color: #d12f19;
[817]83
[376]84}
85
[386]86/* DISABLE */
87button.disable, button.disable:hover {
[816]88    border-radius:8px;
[386]89    background-color: #CCCCCC;
90    border: 1px solid #dedede;
91    color: #565656;
92}
[376]93
[386]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;
[376]102}
[386]103
104.blue_button_text, .big_blue_button_text {
105    color: white;
106    font-size: 11px;
107    font-weight: bold;
[376]108}
[386]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;
[376]119}
120
[386]121.big_blue_button_text {
122    position: relative;
123    top: -3px;
124    font-size: 44px;
125}
[376]126
[386]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;
[376]136}
137
[386]138button.action_button {
139    margin-left: 5px;
140    margin-right: -3px;
[388]141}
142
143/* RED BUTTON */
144button.red_button {
[816]145    background-color: #8a68bb;
[490]146    height: 40px;
[388]147    float: right;
148    margin-right: 0;
149    border: 0;
150}
151
[816]152
153
[388]154.red_button_text {
[816]155    color: white;
[388]156    font-size: 11px;
157    font-weight: bold;
[816]158
[388]159}
160
[529]161.red_button_text:hover {
[816]162    color : #bfafd6;
[529]163    font-size: 11px;
164    font-weight: bold;
165}
166
[388]167button.red_button:hover {
[816]168    background-color: #bfafd6;
[529]169
[388]170}
[816]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 {
[817]197    background-color: #574176;
[816]198
199}
200
201
Note: See TracBrowser for help on using the repository browser.