Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 1: Line 1:
/* little bordered “pill” for each class link */
/* Base pill style */
.class-block {
.class-block {
   display: inline-block;
   display: inline-block;
Line 6: Line 6:
   padding: 0.2em 0.5em;
   padding: 0.2em 0.5em;
   margin: 0.2em;
   margin: 0.2em;
  color: #000;
}
}


/* spacing in your sem/table grids */
/* Program‑line background colors */
.class-conceptualisation      { background: #ffeb3b; }  /* yellow */
.class-researchreflection      { background: #4caf50; }  /* green */
.class-creativetech            { background: #e91e63; }  /* pink */
.class-visualisationmaterial  { background: #9c27b0; }  /* purple */
.class-professionalisation    { background: #2196f3; }  /* blue */
.class-academywide            { background: #ffa500; }  /* orange */
 
/* Table spacing */
.wikitable.semesters-overview,
.wikitable.semesters-overview,
.wikitable.programlines-overview {
.wikitable.programlines-overview {

Revision as of 14:11, 28 July 2025

/* Base pill style */
.class-block {
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 0.3em;
  padding: 0.2em 0.5em;
  margin: 0.2em;
  color: #000;
}

/* Program‑line background colors */
.class-conceptualisation       { background: #ffeb3b; }  /* yellow */
.class-researchreflection      { background: #4caf50; }  /* green */
.class-creativetech            { background: #e91e63; }  /* pink */
.class-visualisationmaterial   { background: #9c27b0; }  /* purple */
.class-professionalisation     { background: #2196f3; }  /* blue */
.class-academywide             { background: #ffa500; }  /* orange */

/* Table spacing */
.wikitable.semesters-overview,
.wikitable.programlines-overview {
  border-collapse: separate;
  border-spacing: 0.5em;
}

.wikitable.semesters-overview th,
.wikitable.programlines-overview th {
  padding: 0.5em;
  text-align: center;
}