source: extensions/PHP_Optimisateur/files/style.css @ 8226

Last change on this file since 8226 was 8226, checked in by mistic100, 13 years ago
  • Corrections de bugs
  • Améliorations mineures
File size: 1.7 KB
Line 
1* {
2        margin:0px;
3        padding:0px;
4        border:0px;
5}
6
7body {
8        font-size:13px;
9        font-family:Calibri,sans-serif;
10        background:#eee;
11        color:#333;
12        width:990px;
13        margin:0 auto;
14}
15
16div {
17        width:450px;
18        margin:10px;
19        padding:10px;
20        border:1px dotted #333;
21        float:left;
22}
23        div.title {
24                float:none;
25                width:942px;
26                font-weight:bold;
27                text-align:center;
28                font-size:1.5em;
29                background:#333;
30                color:#eee;
31                border-color:#eee;
32        }
33        div.footer {
34                clear:both;
35                width:942px;
36                text-align:center;
37                font-size:0.9em;
38                border:none;
39        }
40        div.files li {
41                margin-top:0;
42        }
43
44        div.finish  {
45                background:#DAFFBF;
46                font-weight:bold;
47                font-size:1.2em;
48        }
49
50        div.error {
51                background:#FFD0BF;
52                font-weight:bold;
53                font-size:1.2em;
54        }
55        div.link {
56                border:none;
57        }
58       
59a {
60        color:#EF8100;
61        text-decoration:none;
62        font-size:1.2em;
63        font-style:italic;
64        font-family:"Consolas";
65}
66        a:hover {
67                color:#555;
68                border-bottom:1px dotted #555;
69                margin-bottom:0;
70        }
71        div.link a {
72                margin:0 10px;
73                float:right;
74                margin-bottom:1px;
75        }
76        span.lang a {
77                margin:-4px 10px;
78                float:right;
79        }
80
81h2 {
82        margin-top:-5px;
83}
84
85ul {
86        margin:0 0 0 20px;
87}
88        li {
89                margin-top:5px;
90        }
91                li ul li {
92                        margin-top:0;
93                }
94
95
96
97input {
98        border:1px solid #888;
99        -moz-border-radius:3px;
100}
101        input[type="submit"], input[type="reset"] {
102                padding:2px 5px;
103        }
104
105b.new {
106        color:#0ABF00;
107        font-style:italic;
108}
109b.miss {
110        color:#BF0008;
111        font-style:italic;
112}
113
114span.title {
115        font-weight:bold;
116        text-decoration:underline;
117        font-size:1.1em;
118}
119
120table {
121        min-width:50%;
122}
123        td {
124                width:50%;
125        }
126                tr td:first-child {
127                        text-align:right;
128                        padding-right:5px;
129                }
Note: See TracBrowser for help on using the repository browser.