Welcome to the independent BOXBOY WIKI!

After ten years on Fandom, we forked on January 14, 2025. If you have edited the Fandom wiki and would like to reclaim your account, click here. To ensure that you only visit the independent wiki going forward, install the Indie Wiki Buddy browser extension.

Template:File Info/style.css: Difference between revisions

From BOXBOY WIKI!
Jump to navigationJump to search
(Creating)
 
(Increase max width)
 
Line 3: Line 3:
  background: #f8f9fa;
  background: #f8f9fa;
  margin: 1em 0;
  margin: 1em 0;
  max-width: 550px;
  max-width: 1000px;
  width: 100%;
  width: 100%;
  font-size: 95%;
  font-size: 95%;

Latest revision as of 05:37, 30 November 2025

.file-info-box {
 border: 1px solid #000;
 background: #f8f9fa;
 margin: 1em 0;
 max-width: 1000px;
 width: 100%;
 font-size: 95%;
}

.file-info-row {
 display: flex;
 flex-wrap: wrap;
 border-bottom: 1px solid #ddd;
 background: #f8f9fa;
}

.file-info-row:last-child {
 border-bottom: none;
}

.file-info-label {
 flex: 0 0 130px;
 padding: 6px 8px;
 font-weight: bold;
 background: #eaecf0;
 box-sizing: border-box;
}

.file-info-value {
 flex: 1 1 200px;
 padding: 6px 8px;
 background: #fff;
 box-sizing: border-box;
}

@media (max-width: 600px) {
 .file-info-label {
  flex: 1 1 100%;
  border-bottom: 1px solid #ddd;
 }
 .file-info-value {
  flex: 1 1 100%;
 }
}