source: ether_2012/trunk/web/resources/css/button.css @ 374

Last change on this file since 374 was 353, checked in by vmipsl, 12 years ago

clean
slides

File size: 1.7 KB
Line 
1/** ****************************************************************** **/
2/** http://particletree.com/features/rediscovering-the-button-element/ **/
3/** ****************************************************************** **/
4
5button {
6    -moz-border-radius: 4px 4px 4px 4px;
7    -webkit-border-radius: 4px 4px 4px 4px;
8
9    display: block;
10    float: left;
11    margin: 0 11px 0 0;
12    width: auto;
13    overflow: visible;
14    padding: 4px 6px 3px 6px; /* IE6 */
15
16    font-family: Trebuchet MS, Arial, san-serif;
17    text-decoration: none; /*color: #565656;*/
18    cursor: pointer; /*border: 1px solid #dedede;*/
19}
20
21.small {
22    font-size: 80%;
23}
24
25/* ********************* GRAY BUTTON ********************* */
26button.gray_button {
27    background-color: transparent;
28    border: hidden;
29    height: 31px;
30    float: right;
31    margin-right: 0;
32    position: relative;
33    top: -1px;
34
35    color: gray;
36    font-size: 11px;
37    font-weight: bold;
38
39}
40
41button.gray_button:hover {
42    background-color: #003d6c;
43    color: white;
44}
45
46/* ********************* POSITIVE BUTTON ********************* */
47/*button.positive {*/
48/*background-color: #F0FFF0;*/
49/*color: #529214;*/
50/*}*/
51
52/*button.positive:hover {*/
53/*background-color: #E6EFC2;*/
54/*border: 1px solid #C6D880;*/
55/*color: #529214;*/
56/*}*/
57
58/* ********************* NEGATIVE BUTTON ********************* */
59/*button.negative {*/
60/*color: #d12f19;*/
61/*}*/
62
63/*button.negative:hover {*/
64/*background: #fbe3e4;*/
65/*border: 1px solid #fbc2c4;*/
66/*color: #d12f19;*/
67/*}*/
68
69/* ********************* DISABLE BUTTON ********************* */
70/*button.disable, button.disable:hover {*/
71/*background-color: #CCCCCC;*/
72/*border: 1px solid #dedede;*/
73/*color: #565656;*/
74/*}*/
75
Note: See TracBrowser for help on using the repository browser.