wiki folder for things like Common.js
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
version="1.1"
|
||||
id="svg5507"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="symbols.svg"
|
||||
sodipodi:docname="symbols.01.svg"
|
||||
enable-background="new">
|
||||
<defs
|
||||
id="defs5501" />
|
||||
@@ -27,10 +27,10 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6"
|
||||
inkscape:cx="-9.2789814"
|
||||
inkscape:cx="-9.4575528"
|
||||
inkscape:cy="99.623528"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer8"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
@@ -91,7 +91,7 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Ateliers_pluridisciplinaires"
|
||||
style="display:none;">
|
||||
style="display:inline">
|
||||
<g
|
||||
transform="matrix(0.71815477,0,0,0.71815477,65.187921,-29.508788)"
|
||||
id="Ateliers_pluridisciplinaires">
|
||||
@@ -106,13 +106,11 @@
|
||||
id="g8172"
|
||||
transform="matrix(2.1333332,0,0,-2.1333332,13.499857,367.42774)"
|
||||
style="fill:#020002;fill-opacity:0.99615389;stroke:#030003;stroke-opacity:0.98846154">
|
||||
<circle
|
||||
r="19.208878"
|
||||
cy="40.264759"
|
||||
cx="116.73087"
|
||||
<path
|
||||
transform="matrix(0.05856667,0,0,-0.05856667,-55.427399,154.21379)"
|
||||
id="path8174"
|
||||
style="fill:#020002;fill-opacity:0.99615389;stroke:#030003;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.98846154;marker-start:none" />
|
||||
style="fill:#020002;fill-opacity:0.99615389;stroke:#030003;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.98846154;marker-start:none"
|
||||
d="M 135.93975,40.264759 A 19.208878,19.208878 0 0 1 116.73087,59.473637 19.208878,19.208878 0 0 1 97.521996,40.264759 19.208878,19.208878 0 0 1 116.73087,21.055882 19.208878,19.208878 0 0 1 135.93975,40.264759 Z"
|
||||
id="path8174" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -205,7 +203,8 @@
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer7"
|
||||
inkscape:label="Cours_theoriques">
|
||||
inkscape:label="Cours_theoriques"
|
||||
style="display:none">
|
||||
<path
|
||||
d="m 6.7797495,1.3385787 c 0,3.5225563 -2.8555966,6.378149 -6.37815062,6.378149 -3.52255578,0 -6.37814838,-2.8555927 -6.37814838,-6.378149 0,-3.5225563 2.8555926,-6.3781491 6.37814838,-6.3781491 3.52255402,0 6.37815062,2.8555928 6.37815062,6.3781491 z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#010001;stroke-width:0.80359638;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:2.23606801;stroke-dasharray:2.41078917, 2.41078917;stroke-dashoffset:0;stroke-opacity:1;marker-start:none;marker-mid:none;marker-end:none"
|
||||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
171
wiki/Common.js
Normal file
171
wiki/Common.js
Normal file
@@ -0,0 +1,171 @@
|
||||
/* Le CSS placé ici sera appliqué à tous les habillages. */
|
||||
.rssicon {
|
||||
display: inline-block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-image: url(/mw/resources/assets/Feed-icon.png);
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
table.infobox {
|
||||
width: 30em;
|
||||
font-size: 90%;
|
||||
border: 1px solid #aaaaaa;
|
||||
background-color: #f9f9f9;
|
||||
color: black;
|
||||
margin-bottom: 0.5em;
|
||||
margin-left: 1em;
|
||||
padding: 0.2em;
|
||||
float: right;
|
||||
clear: right;
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
table.infobox th.head {
|
||||
text-align: center;
|
||||
background-color:#ccccff;
|
||||
}
|
||||
|
||||
/* Flexgal */
|
||||
div.flexgal {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
div.flexgal div.item {
|
||||
display: flexbox;
|
||||
}
|
||||
div.flexgal div.item p {
|
||||
margin: 0;
|
||||
padding: 0; /* padding + margin seem to conflict with the grid layout */
|
||||
}
|
||||
a img {
|
||||
border: none;
|
||||
vertical-align: top; /* magically this cancels the containing anchor's bottom border */
|
||||
}
|
||||
|
||||
div.pubdate {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.Media {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.Media-figure {
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
.Media-body {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
|
||||
/* F O N T E S */
|
||||
@font-face {
|
||||
font-family: "Combined";
|
||||
src: url('/typo/Combined/combined.otf');
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'combinedregular';
|
||||
src: url('/typo/Combined/web/combined.eot');
|
||||
src: url('/typo/Combined/web/combined.eot?#iefix') format('embedded-opentype'),
|
||||
url('/typo/Combined/web/combined.woff2') format('woff2'),
|
||||
url('/typo/Combined/web/combined.woff') format('woff'),
|
||||
url('/typo/Combined/web/combined.ttf') format('truetype'),
|
||||
url('/typo/Combined/web/combined.svg#combinedregular') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'wremena';
|
||||
src: url('typo/Wremema/webfont/wremena_bold-webfont.woff2') format('woff2'),
|
||||
url('typo/Wremema/webfont/wremena_bold-webfont.woff') format('woff'),
|
||||
url('typo/Wremema/webfont/wremena_bold-webfont.ttf') format('truetype'),
|
||||
url('typo/Wremema/webfont/wremena_bold-webfont.svg#wremenabold') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'wremena';
|
||||
src: url('typo/Wremema/webfont/wremena_regular-webfont.woff2') format('woff2'),
|
||||
url('typo/Wremema/webfont/wremena_regular-webfont.woff') format('woff'),
|
||||
url('typo/Wremema/webfont/wremena_regular-webfont.ttf') format('truetype'),
|
||||
url('typo/Wremema/webfont/wremena_regular-webfont.svg#wremenaregular') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'wremena';
|
||||
src: url('typo/Wremema/webfont/wremena_light-webfont.woff2') format('woff2'),
|
||||
url('typo/Wremema/webfont/wremena_light-webfont.woff') format('woff'),
|
||||
url('typo/Wremema/webfont/wremena_light-webfont.ttf') format('truetype'),
|
||||
url('typo/Wremema/webfont/wremena_light-webfont.svg#wremenalight') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: 200;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Coupeur Monospace Bold';
|
||||
src: url('/typo/Coupeur/webfont/CoupeurMonospace-Bold.eot'); /* IE9 Compat Modes */
|
||||
src: url('/typo/Coupeur/webfont/CoupeurMonospace-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
||||
url('/typo/Coupeur/webfont/CoupeurMonospace-Bold.woff') format('woff'), /* Modern Browsers */
|
||||
url('/typo/Coupeur/webfont/CoupeurMonospace-Bold.ttf') format('truetype'), /* Safari, Android, iOS */
|
||||
url('/typo/Coupeur/webfont/CoupeurMonospace-Bold.svg#fcf36b8f65c0f0737cd36a2be6922659') format('svg'); /* Legacy iOS */
|
||||
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Coupeur Monospace Normal';
|
||||
src: url('/typo/Coupeur/webfont/CoupeurMonospace-Normal.eot'); /* IE9 Compat Modes */
|
||||
src: url('/typo/Coupeur/webfont/CoupeurMonospace-Normal.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
||||
url('/typo/Coupeur/webfont/CoupeurMonospace-Normal.woff') format('woff'), /* Modern Browsers */
|
||||
url('/typo/Coupeur/webfont/CoupeurMonospace-Normal.ttf') format('truetype'), /* Safari, Android, iOS */
|
||||
url('/typo/Coupeur/webfont/CoupeurMonospace-Normal.svg#4b219f539d302a6ffd9fd41e2da16172') format('svg'); /* Legacy iOS */
|
||||
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
|
||||
/* NEW RULES (MICHAEL ) */
|
||||
|
||||
body, body p {
|
||||
font-family: "Coupeur Monospace Normal", monospace;
|
||||
}
|
||||
h1, h2, h3, h4 {
|
||||
font-family: 'combinedregular','Combined', monospace !important;
|
||||
padding-right: 10%;
|
||||
padding-top: 0.5em;
|
||||
margin: 0;
|
||||
border-color: black;
|
||||
line-height: 1.5em;
|
||||
font-weight: normal;
|
||||
font-size: 100%;
|
||||
}
|
||||
div.header-container {
|
||||
/* display: none; */
|
||||
}
|
||||
form.header {
|
||||
display: none;
|
||||
}
|
||||
ul#page-actions {
|
||||
display: none;
|
||||
}
|
||||
a.talk {
|
||||
display:none;
|
||||
}
|
||||
Reference in New Issue
Block a user