Source: Scratch Wiki en français

Note : après avoir publié vos modifications, il se peut que vous deviez forcer le rechargement complet du cache de votre navigateur pour voir les changements.

  • Firefox / Safari : maintenez la touche Maj (Shift) en cliquant sur le bouton Actualiser ou appuyez sur Ctrl + F5 ou Ctrl + R (⌘ + R sur un Mac).
  • Google Chrome : appuyez sur Ctrl + Maj + R (⌘ + Shift + R sur un Mac).
  • Internet Explorer / Edge : maintenez la touche Ctrl en cliquant sur le bouton Actualiser ou pressez Ctrl + F5.
  • Opera : appuyez sur Ctrl + F5.
/* Le CSS placé ici sera appliqué à tous les habillages. */

/* sous-titre du wiki, s'affichait sur toutes les pages pour raison inconnue */
#siteSub {
	display: none !important;
}

@media only screen and (max-width: 500px) {
	/* Liens footer */
	#footer .lists {
		display: grid;
	}

	/* Masquage texte thumb */
	*:not(.right) {
		clear: none;
	}

	/* thumb */
	.thumb {
		margin: auto !important;
		float: none !important;
		padding: 10px;
	}

	.thumb > * {
		width: auto !important;
		height: auto;
	}

	p > a > img {
		height: auto;
	}

	/* débordement liste reference */
	ol.references li {
		max-width: 100%;
		overflow-x: auto;
	}

	/* débordement images */
	.floatright > a > img,
	.floatleft > a > img {
		max-width: 100%;
		height: auto;
	}

	/* taille Scratchwikiframe */
	Scratchwikiframe:nth-child(2) {
		height: auto !important;
	}

	/* Note */
	.Note {
		grid: "icon" "text" !important;
	}
}


/* Débordement page */
#content {
	overflow-x: unset !important;
}

/* Débordement tables */
table.wikitable {
	display: inline-block;
	max-width: 100%;
	overflow-x: auto;
}

/* pre blocks on same line as text in article */
#content p {
	display: inline-block;
}

/* Débordement pre */
/* Débordement code */
pre {
	padding: 5px;
	display: inline;
	line-height: 22px;
	word-break: break-word;
}

code,
pre.mw-code {
	white-space: break-spaces;
	display: block;
	max-width: 100%;
	overflow-x: auto;
	padding: 10px;
}


/* thumb */
img,
.thumb,
.thumb * {
	height: auto;
	max-width: 100%;
}

/* Débordement fichier */
#file * {
	max-width: 100%;
	height: auto;
}

/* Alignement Scratchblocks dans paragraphe */
#content [class^="blocks"] {
	vertical-align: middle;
}

/* Alignement Scratcblocks dans modèle */
code.blocks,
code.blocks-2 {
	padding: 0px;
	display: inline-flex;
	overflow-x: auto;
}

code.blocks > div.scratchblocks,
code.blocks-2 > div.scratchblocks {
	display: flex;
}

/* Alignement Scratcblocks dans modèle */
pre.blocks,
pre.blocks-2 {
	display: block;
	margin: 0px;
	overflow-x: auto;
	padding: 0px;
}

/* Blocs à la même hauteur que le texte */
span.scratchblocks.scratchblocks-inline.scratchblocks-inline-undefined {
	line-height: 1rem;
}

.mw-collapsible,
.mw-made-collapsible {
	display: flow-root;
}

audio {
	height: revert !important;
}