Jump to content

Template:Screenshot/styles.css

From Swarthmore Knowledge Base
Revision as of 15:17, 10 July 2026 by Kwhiteb1 (talk | contribs) (Created page with ".screenshot-wrapper { margin: 1.5em 0; text-align: center; } .screenshot { display: inline-block; max-width: 100%; box-sizing: border-box; padding: 12px; background: #fff; border: 1px solid #d8dde8; border-radius: 8px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); color: #202122; text-align: center; } .screenshot__image { max-width: 100%; box-sizing: border-box; overflow: hidden; border: 1px solid #c8ccd1; border-radius: 4px; line-heigh...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
.screenshot-wrapper {
  margin: 1.5em 0;
  text-align: center;
}

.screenshot {
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px;
  background: #fff;
  border: 1px solid #d8dde8;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  color: #202122;
  text-align: center;
}

.screenshot__image {
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid #c8ccd1;
  border-radius: 4px;
  line-height: 0;
}

.screenshot__image p,
.screenshot__caption p {
  margin: 0;
}

.screenshot__image .mw-file-description,
.screenshot__image .mw-file-element {
  display: block;
  max-width: 100%;
}

.screenshot__image .mw-file-element {
  width: auto;
  height: auto;
}

.screenshot__caption {
  margin-top: 0.75em;
  color: #54595d;
  font-size: 0.9em;
  line-height: 1.4;
  text-align: center;
  overflow-wrap: anywhere;
}

html.skin-theme-clientpref-night .screenshot {
  background: #202122;
  border-color: #54595d;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  color: #eaecf0;
}

html.skin-theme-clientpref-night .screenshot__image {
  border-color: #72777d;
}

html.skin-theme-clientpref-night .screenshot__caption {
  color: #c8ccd1;
}

@media screen and (prefers-color-scheme: dark) {
  html.skin-theme-clientpref-os .screenshot {
    background: #202122;
    border-color: #54595d;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    color: #eaecf0;
  }

  html.skin-theme-clientpref-os .screenshot__image {
    border-color: #72777d;
  }

  html.skin-theme-clientpref-os .screenshot__caption {
    color: #c8ccd1;
  }
}