Jump to content

User:Kim.kik

From mediawiki.org

My name is Kim Andersen. I am a Mediawiki user. I run the airsoft wiki Kammeraterikrig.dk. I am a civil servant and political scientist by training.

Kammeraterikrig.dk selected stats

  • Mediawiki 1.40.2 --> I expect to upgrade to the new release.
  • PHP 7.4.33 (lightspeed)

Extensions

  • Semantic Mediawiki 4.1.3
  • Semantic Bundle 6.0.1
  • Semantic Compound Queries 2.2.0
  • NearbyPages 1.0.0
  • MobileFrontend 2.4.1

Semantic contribution

The Semantic Mediawiki software is an intrinsic part of my website as it generates data which is reused on many pages thus leaving the update in large part to internal software rather than human contribution. I have created various "small" Semantic queries that generate output based on these changes.

Skin: Citizen

/**** Citizen table ****/
/* This CSS creates a table akin to the table used in the Citizen-skin, but is clickable as opposed to the latter */
.citizen-table {
	border: 1px solid #ddd;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Ensures rounded corners are visible */
    margin: 20px 0; /* Some space around the table */
    font-size: 90%;
}

/* Table header styling */
.citizen-table th {
    padding: 5px;
    text-align: left;
    border-bottom: 1px solid #ddd; /* Horizontal line below header */
}

/* Table body styling */
.citizen-table td {
    padding: 5px;
    border-bottom: 1px solid #ddd; /* Horizontal lines between rows */
}

/* Table body styling for first column */
.citizen-table th:first-child {
    padding: 10px;
    padding-left: 10px; /* Left padding for first body cell */
}

.citizen-table td:first-child {
    padding: 10px;
    padding-left: 10px; /* Left padding for first body cell */
}