source: ether_statistics/web/resources/css/ether.css @ 783

Last change on this file since 783 was 587, checked in by vmipsl, 12 years ago

interface _ cloud

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