« MediaWiki:Common.css » : différence entre les versions

De EduTech Wiki
Aller à la navigation Aller à la recherche
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 231 : Ligne 231 :
font-family:arial;
font-family:arial;
font-size:0.95em;
font-size:0.95em;
text-decoration:none;
box-sizing: border-box;
box-sizing: border-box;
padding:0 0.25em;
padding:0 13px;
text-align:center;
text-align:center;
line-height:1.5em;
}
}



Version du 7 avril 2021 à 23:43

  1 /** Le CSS placé ici sera appliqué à toutes les apparences. */
  2 
  3 /*
  4 <pre>
  5 */
  6 
  7 /* Badges */
  8 
  9 div.appear {
 10     width: 184px; 
 11     border: red 2px solid;
 12     background:#F8F8F8;
 13     position: absolute;
 14     top: 10px;
 15     left:-6px;
 16     display:none;go
 17     padding: 0 3px 3px 3px;
 18     z-index: 1000000;
 19 }
 20 
 21 div.appear_left {
 22     width: 184px; 
 23     border: red 2px solid;
 24     background:#F8F8F8;
 25     position: absolute;
 26     top: 10px;
 27     left:-50%;
 28     display:none;
 29     padding: 0 3px 3px 3px;
 30     z-index: 1000000;
 31 }
 32 
 33 div.badge {
 34     cursor:pointer;
 35     position: relative;
 36     display: inline-block;
 37     border: green 1px solid;
 38     width: 130px;
 39     margin-bottom: 3px;
 40     text-align: center;
 41 }
 42 
 43 div.badge:hover div.appear, div.badge:hover div.appear_left{
 44     display:block;
 45 }
 46 
 47 /*front page */
 48 
 49 [class*="front-"] {width: 100%}
 50 
 51 @media only screen and (min-width: 768px){
 52 #front_left {padding:3px; float:left; width:57%; border:1px solid #006699; background: #EAF5FB;}
 53 #front_right {float:left; width:40%; background: #FAF9EC; border:1px solid #996600; margin-left: 4px; padding: 3px;}
 54 div.front_title {background:#E2C4E8; font-size:large; border-bottom:1px solid #996600;border-top:1px solid #996600;}
 55 }
 56  
 57 @media print{
 58 #front_left {}
 59 #front_right {}
 60 }
 61 
 62 /* Cours bases */
 63 .PageFormsRadioButton {display:block;}
 64 
 65 /* collection extension */
 66 
 67 .onlyinprint {display: none}
 68 
 69 /* Space out main section titles */
 70 h1 {font-weight:bold;}
 71 h2 {margin-top:3ex;font-weight:bold;}
 72 h3 {margin-top:1ex;}
 73 
 74 table.wikitable,
 75 table.prettytable,
 76 table.datatable {
 77   margin: 1em 1em 1em 0;
 78   background: #f9f9f9;
 79   border: 1px #aaaaaa solid;
 80   border-collapse: collapse;
 81 }
 82  
 83 table.datatable {
 84 		font-size:70%
 85 		}
 86 
 87 table.wikitable th, table.wikitable td,
 88 table.prettytable th, table.prettytable td {
 89   border: 1px #aaaaaa solid;
 90   padding: 0.2em;
 91 }
 92 
 93 table.datatable th, table.datatable td {
 94   border: 1px #aaaaaa solid;
 95   font-size:70%	
 96   padding: 0em;
 97 }
 98  
 99 table.wikitable th,
100 table.datatable th,
101 table.prettytable th {
102   background: #f2f2f2;
103   text-align: center;
104 }
105  
106 table.wikitable caption,
107 table.datatable caption,
108 table.prettytable caption {
109   margin-left: inherit;
110   margin-right: inherit;
111 }
112 
113 /* Removes useless links from printout */
114 @media print {
115     .portlet, #privacy, #about, #disclaimer {display:none;}
116 }
117 
118 
119 /* Banner Styles used in EduTech wiki 
120  - use class names like Banner_xxxx
121  */
122 
123 .Banner_incomplete {
124   float:right;
125   clear:right;
126   width:200px;
127   border:1px solid orange;
128   background-color:#FFFACD;
129   padding:7px; 
130   margin-bottom: 10px;
131   margin-left: 1em;
132 }
133 
134 /* See http://svn.wikimedia.org/svnroot/mediawiki/trunk/extensions/PageBy/README */
135 ul.pageby {
136     border:1px solid #60606F;
137     background-color:#E0E0EF;
138     font-size: 80%;
139     margin:1ex;
140     padding:1ex;
141     list-style-type:none;
142   }
143 
144 .Banner_tutorial {
145   float:right;
146   clear:right;
147   width:200px;
148   border:1px solid blue;
149   background-color:#F8C9E4;
150   padding:7px; 
151   margin-bottom: 10px;
152   margin-left: 1em;
153 }
154 
155 .tut_goals{
156   background-color:#F8C9E4;
157   padding:7px; 
158   margin-bottom: 10px;
159   border:1px solid #AAAAAA;
160 }
161 
162 .Banner_copyright{
163   background-color:#d0f0c0;
164   padding:7px; 
165   margin-bottom: 10px;
166   border:1px solid #AAAAAA;
167 }
168 
169 .tagcloud {
170 	width: 95%;
171 	text-align: center;
172 	background-color: #FDFDFD;
173 	border: 1px solid #EEEEEE;
174 	padding: 15px 10px 15px 10px;
175  }
176 .tagcloud a {
177 	color: #0052CB;
178 	margin-left: 10px;
179 	margin-right: 10px;
180 	font-weight: bold;
181  }
182 
183 code {
184   border: 1px solid #ddd;
185   padding: 1px 4px;
186   border-radius: 2px;
187 }
188 
189 /* category tree - first is just for portlet - second for all trees */
190 /* 
191 #p-categorytree-portlet {font-size: 80% } 
192 */
193 .CategoryTreeTag {font-size: 90%; }
194 
195 
196 /* Syntaxhighlight geshi */
197 div.mw-geshi {
198   border: 1px dotted grey;
199   padding: 2px; 
200   margin-left:1em;
201   font-size: 120%;
202   margin-top:2px;
203   margin-right:2px;
204   margin-bottom:2px
205  }
206 
207 
208 .sidebar_banner {
209  margin-top: 5px;
210  margin-bottom: 5px;
211 }
212 
213 h3 .editsection { font-size: 76%; font-weight: normal; }
214 h4 .editsection { font-size: 86%; font-weight: normal; }
215 h5 .editsection { font-weight: normal; }
216 h6 .editsection { font-size: 125%; font-weight: normal; }
217 
218 /* Contribution Scores */
219 .contributionscores-wrapper {  font-size: 80%; }
220 .contributionscores-title   { margin-left: 0; padding-left: 0em; margin-bottom: 0;}
221 .contributionscores .header { border-bottom: 1px solid #999999; font-weight: bold; }
222 .contributionscores .odd     { background-color: #eeeeee; }
223 .contributionscores .header td   { padding-left: .2em; padding-right: .2em; }
224 .contributionscores .content   { padding-left: .2em; padding-right: .2em; }
225 
226 .GoBlock{
227 background: linear-gradient(rgb(207, 234, 153),rgb(157, 187, 96));
228 border-radius: 4px;
229 display:inline-block;
230 color:#333333;
231 font-family:arial;
232 font-size:0.95em;
233 box-sizing: border-box;
234 padding:0 13px;
235 text-align:center;
236 line-height:1.5em;
237 }
238 
239 .StopBlock{
240 -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
241 -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
242 box-shadow:inset 0px 1px 0px 0px #ffffff;
243 background:rgb(200, 230, 140);
244 background-image: linear-gradient(rgb(248, 228, 158), rgb(220, 200, 130));
245 background-image: -webkit-linear-gradient(rgb(248, 228, 158), rgb(220, 200, 130));
246 -webkit-border-radius: 6px;
247 -moz-border-radius: 6px;
248 border-radius: 6px;
249 text-indent:0;
250 border:1px solid rgb(155,185,95);
251 display:inline-block;
252 color:#333333;
253 font-family:arial;
254 font-size:13px;
255 font-style:normal;
256 text-decoration:none;
257 -webkit-box-sizing: border-box;
258 -moz-box-sizing: border-box;
259 box-sizing: border-box;
260 padding:0px 8px;
261 text-align:center;
262 line-height:2.5em;
263 }
264 
265 .tableBlue{
266 margin:auto;
267 background: #f9f9f9;
268 border-collapse: collapse;
269 width:98%;
270 text-align:center;
271 }
272 
273 .tableBlue td{
274 border: 1px #aaaaaa solid;
275 padding:8px !important;
276 }
277 
278 .tableBlue th{
279 background: rgb(200,220,240);
280 text-align: center;
281 font-weight:bold;
282 color:rgb(120,140,180);
283 padding: 8px 15px 8px 15px;
284 border: 1px #aaaaaa solid;
285 }
286 
287 .tableBlue tr.row-odd{background:white;}
288 .tableBlue tr.row-even{background:rgb(235,245,255);}
289 
290 /* Leyla formulaires STIC III/IV */
291 
292 .annee.radioButtonItem {
293   width: 10%;
294   display: block;
295   float:left;
296 }
297 
298 .technologie.checkboxLabel {
299   width: 25%;
300   display: block;
301   float:left;
302 }
303 
304 .type.checkboxLabel {
305   width: 25%;
306   display: block;
307   float:left;
308 }
309 
310 .domaine_enseignement.checkboxLabel {
311   width: 25%;
312   display: block;
313   float:left;
314 }
315 
316 .niveau_enseignement.checkboxLabel {
317   width: 33.3%;
318   display: block;
319   float:left;
320 }
321 
322 .public_cible.checkboxLabel {
323   width: 20%;
324   display: block;
325   float:left;
326 }
327 .public_age.checkboxLabel {
328   width: 20%;
329   display: block;
330   float:left;
331 }
332 
333 /*
334 </pre>
335 */