source: tapas/web/resources/css/mainEther.css @ 383

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

clean

File size: 1.6 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: #04155D;
11    font-family: Trebuchet MS, Arial, san-serif;
12}
13
14.pageWrapper {
15    width: 980px;
16    /*text-align: left;*/
17    margin: auto;
18}
19
20a img {
21    border-width: 0;
22}
23
24a {
25    color: #165076;
26    text-decoration: none;
27}
28
29a:hover {
30    text-decoration: none;
31    color: #2277BB;
32}
33
34a:visited {
35    text-decoration: none;
36    color: #618EAC;
37}
38
39input {
40    -moz-border-radius: 4px 4px 4px 4px;
41    -webkit-border-radius: 4px 4px 4px 4px;
42}
43
44li {
45    list-style-type: none;
46}
47
48li:hover {
49    color: #ADEAEA;
50}
51
52.navStyle {
53    position: absolute;
54    top: -13px;
55}
56
57/** ************************************ **/
58/** *********** DIV INFOS ************** **/
59/** ************************************ **/
60.error, .alert, .notice, .success, .info, .loading {
61    padding: 0.5em;
62    margin: 0.5em auto;
63    border: 2px solid #ddd;
64    text-align: center;
65}
66
67.error, .alert {
68    background: #fbe3e4;
69    color: #8a1f11;
70    border-color: #fbc2c4;
71}
72
73.notice {
74    background: #fff6bf;
75    color: #514721;
76    border-color: #ffd324;
77}
78
79.success {
80    background: #e6efc2;
81    color: #264409;
82    border-color: #c6d880;
83}
84
85.info {
86    background: #d5edf8;
87    color: #205791;
88    border-color: #92cae4;
89}
90
91.loading {
92    border: none;
93}
94
95/** ************************************ **/
96/** ************ LOADING *************** **/
97/** ************************************ **/
98.loading-classic {
99    background-image: url(../../resources/icons/transparent_loading.gif);
100    height: 16px;
101    width: 16px;
102}
Note: See TracBrowser for help on using the repository browser.