MediaWiki:Common.css: Difference between revisions

From Ages of Conflict
Content added Content deleted
No edit summary
No edit summary
Line 1: Line 1:
/* Body background color */
body {
background-color: #333c47;
color: #ffffff;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

/* Sticky nav background color */
#mw-navigation {
background-color: #5e6732;
}

/* Community header color */
#p-logo a {
color: #ffffff;
}

/* Accent color */
a {
color: #c7b78b;
}

/* Link color */
a:link,
a:visited {
color: #ffffff;
}

/* Article background color */
#content {
background-color: #575f46;
}
.image-row {
.image-row {
display: flex;
display: flex;

Revision as of 00:07, 15 February 2024

.image-row {
  display: flex;
  justify-content: space-between;
  padding: 20px; /* Add padding to the row */
}

.image-box img {
    height: 134.38px;
    width: 100%;
    transition: 0.2s;
    object-fit: cover;
}

.image-box:hover img {
  transform: scale(1.05);
}
.pi-image {
    clip-path: content-box;
}

.pi-image img {
    transition: transform 0.5s;
}

.pi-image img:hover {
    transform: scale(1.04);
}