source: extensions/PHP_Optimisateur/template/css/screen.css @ 9201

Last change on this file since 9201 was 9201, checked in by mistic100, 13 years ago

[tools] PHP Optimisateur :

  • Correction de bugs
  • La plupart des types de fichiers sont supportés (testé avec jpg, png et gif)
  • Réécriture de la gestion des plugins
  • Nouvelle apparence
File size: 4.9 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:#0a0a0a;
11        color:#777;
12        width:990px;
13        margin:0 auto;
14}
15
16#overlay {
17        position:fixed;
18        z-index:9999;
19        top:0;
20        left:0;
21        width:100%;
22        height:100%;
23        background:#000;
24        opacity:0.3;
25        filter:alpha(opacity=30); 
26}
27
28div.generic {
29        width:450px;
30        margin:10px;
31        padding:10px;
32        border:1px solid #333;
33        float:left;
34        -moz-border-radius:3px;
35        -webkit-border-radius:3px;
36}
37        div.title {
38                float:none;
39                width:942px;
40                text-align:center;
41                font-weight:bold;
42                font-size:1.5em;
43                color:#eee;
44                text-shadow:0 0 4px #07f;
45                border-color:#07F;
46                -moz-box-shadow:0 0 6px #07F, inset 0 0 5px #07F;
47                -webkit-box-shadow:0 0 6px #07F, inset 0 0 5px #07F;
48                background-color:#222;
49                background-image:-moz-linear-gradient(center bottom, #111, #333);
50                background-image:-webkit-gradient(linear,center bottom,center top,color-stop(0, #111),color-stop(1, #333));
51        }
52        div.footer {
53                clear:both;
54                width:942px;
55                text-align:center;
56                font-size:0.9em;
57                border:none;
58        }
59        div.files li {
60                margin-top:0;
61        }
62
63        div.finish  {
64                background:#030;
65                color:#eee;
66                text-shadow:0 0 4px #0b0;
67                border-color:#0b0;
68                -moz-box-shadow:0 0 6px #0b0, inset 0 0 5px #0b0;
69                -webkit-box-shadow:0 0 6px #0b0, inset 0 0 5px #0b0;
70                font-weight:bold;
71                font-size:1.2em;
72        }
73
74        div.error {
75                background:#300;
76                color:#eee;
77                text-shadow:0 0 4px #B00;
78                border-color:#B00;
79                -moz-box-shadow:0 0 6px #B00, inset 0 0 5px #B00;
80                -webkit-box-shadow:0 0 6px #B00, inset 0 0 5px #B00;
81                font-weight:bold;
82                font-size:1.2em;
83        }
84        div.notice {
85                background:#440;
86                color:#eee;
87                text-shadow:0 0 4px #ff0;
88                border-color:#ff0;
89                -moz-box-shadow:0 0 6px #ff0, inset 0 0 5px #ff0;
90                -webkit-box-shadow:0 0 6px #ff0, inset 0 0 5px #ff0;
91                font-weight:bold;
92                font-size:1.2em;
93        }
94        div.link {
95                float:right;
96                font-size:1.1em;
97                border:none;
98                text-align:center;
99        }
100       
101a {
102        text-decoration:none;
103        font-size:1.2em;
104        font-style:italic;
105        font-family:"Consolas";
106        color:#e80;
107        text-shadow:0 0 4px #f70;
108}
109        a:hover {
110                color:#07F;
111                text-shadow:0 0 4px #07f;
112        }
113        .link a {
114                margin:0 10px;
115                float:right;
116                margin-bottom:1px;
117        }
118        .lang a {
119                margin:-4px 10px;
120                float:right;
121                border:none;
122        }
123                .lang a:hover img {
124                        -moz-box-shadow:0 0 4px #07f;
125                        -webkit-box-shadow:0 0 4px #07f;
126                }
127       
128
129h2 {
130        margin-top:-5px;
131        color:#eee;
132        text-shadow:0 0 5px #ddd;
133}
134
135ul {
136        margin:0 0 0 20px;
137}
138        li {
139                margin-top:5px;
140        }
141                li ul li {
142                        margin-top:0;
143                }
144               
145input[type="submit"], input[type="reset"], input[type="text"], a.input-submit {
146        color:#666;
147        border:1px solid #555;
148        -moz-border-radius:3px;
149        -webkit-border-radius:3px;
150        background:#111;
151        font-family:"Calibri",sans-serif;
152}
153        input[type="submit"]:hover, input[type="reset"]:hover, input[type="text"]:hover, a.input-submit:hover {
154                border-color:#07f;
155                -moz-box-shadow:0 0 3px #07f;
156                -webkit-box-shadow:0 0 3px #07f;
157        }
158        input[type="submit"]:focus, input[type="reset"]:focus, input[type="text"]:focus {
159                color:#999;
160                background:#222;
161                border-color:#f70;
162                -moz-box-shadow:0 0 3px #F70;
163                -webkit-box-shadow:0 0 3px #F70;
164        }
165        input[type="submit"], input[type="reset"], a.input-submit  {
166                margin:-5px 10px 0 10px;
167                padding:3px 8px 3px 6px;
168                color:#777;
169                font-size:1.1em;
170                font-style:italic;
171                -moz-border-radius:20px;
172                -webkit-border-radius:20px;
173                background-image:-moz-linear-gradient(center bottom, #111, #333);
174                background-image:-webkit-gradient(linear,center bottom,center top,color-stop(0, #111),color-stop(1, #333));
175        }
176        input[type="submit"]:hover, input[type="reset"]:hover, a.input-submit:hover {
177                color:#07f;
178                text-shadow:0 0 3px #07f;
179                background-image:-moz-linear-gradient(center top, #111, #222);
180                background-image:-webkit-gradient(linear,center top,center bottom,color-stop(0, #111),color-stop(1, #222));
181        }
182       
183a.input-submit {
184        float:none;
185        display:inline-block;
186        margin-top:1px;
187        padding:3px 10px 5px 10px;
188        text-shadow:none;
189}
190
191
192b.new {
193        color:#0b0;
194        font-style:italic;
195}
196b.miss {
197        color:#B00;
198        font-style:italic;
199}
200
201span.title {
202        font-weight:bold;
203        text-decoration:underline;
204        font-size:1.1em;
205        color:#eee;
206        text-shadow:0 0 3px #ddd;
207}
208
209table {
210        min-width:50%;
211}
212        /* td {
213                width:50%;
214        } */
215                tr td:first-child {
216                        text-align:right;
217                        padding-right:5px;
218                        font-weight:bold;
219                }
220        tr td.legend {
221                font-weight:normal;
222                text-align:left;
223        }
224               
225#loader {
226        float:right;
227        margin:-8px 0 -10px 0;
228}
229
230.plugin-title .plugin-active {
231        float:right;
232}
233
234.color-display {
235        width:30px;
236        height:15px;
237        margin:-10px 0;
238        display:inline-block;
239        vertical-align:middle;
240        border:1px solid #888;
241        -moz-border-radius:3px;
242        -webkit-border-radius:3px;
243        -moz-box-shadow: 0 0 2px #888, inset 0 0 2px #888;
244        -webkit-box-shadow: 0 0 2px #888, inset 0 0 2px #888;
245}
Note: See TracBrowser for help on using the repository browser.