source: ether_megapoli/trunk/web/resources/css/ether.css @ 254

Last change on this file since 254 was 254, checked in by vmipsl, 13 years ago

extract

File size: 1.9 KB
Line 
1html {
2    border: 0 none;
3    margin: 0;
4    padding: 0;
5}
6
7body {
8    font-size: 13px;
9    line-height: 1.7em; /*color: #333333;*/
10    color: #04155D;
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/*-moz-box-shadow: 0 0 20px #2E2D32;*/
40/*-moz-border-radius: 4px;*/
41    width: 980px;
42    text-align: left;
43    margin: -13px auto;
44}
45
46.pageWrapper:after {
47    content: "\0020";
48    display: block;
49    height: 0;
50    clear: both;
51    visibility: hidden;
52    overflow: hidden;
53}
54
55.pair, .impair {
56    width: 210px;
57    /*padding-top: 3px;*/
58    /*padding-bottom: 3px;*/
59}
60
61.bindedText {
62    color: #6178BC;
63    text-decoration: none;
64}
65
66.navStyle {
67    position: absolute;
68    top: -13px;
69}
70
71/** ************************************ **/
72/** *********** DIV INFOS ************** **/
73/** ************************************ **/
74.error, .alert, .notice, .success, .info, .loading {
75    padding: 0.5em;
76    margin: 0.5em auto;
77    border: 2px solid #ddd;
78    text-align: center;
79}
80
81.error, .alert {
82    background: #fbe3e4;
83    color: #8a1f11;
84    border-color: #fbc2c4;
85}
86
87.notice {
88    background: #fff6bf;
89    color: #514721;
90    border-color: #ffd324;
91}
92
93.success {
94    background: #e6efc2;
95    color: #264409;
96    border-color: #c6d880;
97}
98
99.info {
100    background: #d5edf8;
101    color: #205791;
102    border-color: #92cae4;
103}
104
105.loading {
106    border: none;
107}
108
109/** ************************************ **/
110/** ************ LOADING *************** **/
111/** ************************************ **/
112.loading-classic {
113    background-image: url(../../resources/icons/transparent_loading.gif);
114    height: 16px;
115    width: 16px;
116}
Note: See TracBrowser for help on using the repository browser.