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

Last change on this file since 8195 was 8195, checked in by mistic100, 13 years ago
  • Nouveau plugin : CreateCustomThumbs permet de créer des miniatures de taille fixe
  • On peut maintenant désinstaller un plugin facilement
  • Ajout d’une option pour gérer le dossier de sortie non vide (effacer, continuer, bloquer)
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}
65        a:hover {
66                color:#555;
67                border-bottom:1px dotted #555;
68                margin-bottom:0;
69        }
70        div.link a {
71                margin:0 10px;
72                float:right;
73                margin-bottom:1px;
74        }
75        span.lang a {
76                margin:-4px 10px;
77                float:right;
78        }
79
80h2 {
81        margin-top:-5px;
82}
83
84ul {
85        margin:0 0 0 20px;
86}
87        li {
88                margin-top:5px;
89        }
90                li ul li {
91                        margin-top:0;
92                }
93
94
95
96input {
97        border:1px solid #888;
98        -moz-border-radius:3px;
99}
100        input[type="submit"], input[type="reset"] {
101                padding:2px 5px;
102        }
103
104b.new {
105        color:#0ABF00;
106        font-style:italic;
107}
108b.miss {
109        color:#BF0008;
110        font-style:italic;
111}
112
113span.title {
114        font-weight:bold;
115        text-decoration:underline;
116        font-size:1.1em;
117}
118
119table {
120        min-width:50%;
121}
122        td {
123                width:50%;
124        }
125                tr td:first-child {
126                        text-align:right;
127                        padding-right:5px;
128                }
Note: See TracBrowser for help on using the repository browser.