source: Ballon/web/resources/css/ether.css @ 848

Last change on this file since 848 was 766, checked in by npipsl, 11 years ago
File size: 2.1 KB
RevLine 
[766]1
2html {
3    border: 0 none;
4    margin: 0;
5    padding: 0;
6}
7
8body, table {
9    font-size: 13px;
10    line-height: 1.7em; /*color: #333333;*/
11    color: #04155D;
12    font-family: Trebuchet MS, Arial, san-serif;
13}
14
15a img {
16    border-width: 0;
17}
18
19a {
20    color: #165076;
21    text-decoration: none;
22}
23
24a:hover {
25    text-decoration: none;
26    color: #2277BB;
27}
28
29/*a:visited {
30    text-decoration: none;
31    color: #618EAC;
32} */
33
34input {
35    -moz-border-radius: 4px 4px 4px 4px;
36    -webkit-border-radius: 4px 4px 4px 4px;
37}
38
39.pageWrapper {
40/*-moz-box-shadow: 0 0 20px #2E2D32;*/
41/*-moz-border-radius: 4px;*/
42    width: 980px;
43    text-align: left;
44    margin: -13px auto;
45}
46
47.pageWrapper:after {
48    content: "\0020";
49    display: block;
50    height: 0;
51    clear: both;
52    visibility: hidden;
53    overflow: hidden;
54}
55
56.pair:hover, .impair:hover {
57    -moz-border-radius: 4px 4px 4px 4px;
58    background: none repeat scroll 0 0 #70739C;
59    color: #E1DEF1;
60    text-decoration: none;
61}
62
63.bindedText {
64    color: #6178BC;
65    text-decoration: none;
66}
67
68.navStyle {
69    position: absolute;
70    top: -13px;
71}
72
73/** ************************************ **/
74/** *********** DIV INFOS ************** **/
75/** ************************************ **/
76.error, .alert, .notice, .success, .info, .loading {
77    padding: 0.5em;
78    margin: 0.5em auto;
79    border: 2px solid #ddd;
80    text-align: center;
81}
82
83.error, .alert {
84    background: #fbe3e4;
85    color: #8a1f11;
86    border-color: #fbc2c4;
87}
88
89.notice {
90    background: #fff6bf;
91    color: #514721;
92    border-color: #ffd324;
93}
94
95.success {
96    background: #e6efc2;
97    color: #264409;
98    border-color: #c6d880;
99}
100
101.info {
102    background: #d5edf8;
103    color: #205791;
104    border-color: #92cae4;
105}
106
107.loading {
108    border: none;
109}
110
111/** ************************************ **/
112/** ************ LOADING *************** **/
113/** ************************************ **/
114.loading-classic {
115    background-image: url(../../resources/icons/transparent_loading.gif);
116    height: 38px;
117    width: 38px;
118}
119
120.loading-data {
121    background-image: url(../../resources/icons/loading_datas.gif);
122    height: 15px;
123    width: 128px;
124    margin: auto;
125}
Note: See TracBrowser for help on using the repository browser.