MediaWiki:Common.css: Difference between revisions

From Colorversal Attack
Created page with "body { background-image: url('/images/paper-texture.gif'); background-size:cover;} #mw-content-container { background-image: url('/images/paper-texture.gif'); background-size:cover;}"
 
No edit summary
Line 4: Line 4:
#mw-content-container { background-image: url('/images/paper-texture.gif');
#mw-content-container { background-image: url('/images/paper-texture.gif');
background-size:cover;}
background-size:cover;}
/* Sidebar notebook paper effect */
#mw-panel {
  /* soft off‑white base */
  background-color: #faf7f0;
  /* light blue horizontal lines */
  background-image: linear-gradient(
    to bottom,
    rgba(120, 170, 220, 0.35) 1px,
    rgba(250, 247, 240, 0) 1px
  );
  background-size: 100% 26px; /* line spacing */
}
/* Optional: keep boxes visually clean */
#mw-panel .portal,
#mw-panel .vector-menu {
  background: transparent;
  border: none;
  box-shadow: none;
}
/* Optional: subtle left margin so text doesn’t sit on the edge */
#mw-panel .body,
#mw-panel .vector-menu-content-list {
  padding-left: 10px;
}

Revision as of 04:32, 3 June 2026

body { background-image: url('/images/paper-texture.gif');
background-size:cover;}

#mw-content-container { background-image: url('/images/paper-texture.gif');
background-size:cover;}

/* Sidebar notebook paper effect */
#mw-panel {
  /* soft off‑white base */
  background-color: #faf7f0;

  /* light blue horizontal lines */
  background-image: linear-gradient(
    to bottom,
    rgba(120, 170, 220, 0.35) 1px,
    rgba(250, 247, 240, 0) 1px
  );
  background-size: 100% 26px; /* line spacing */
}

/* Optional: keep boxes visually clean */
#mw-panel .portal,
#mw-panel .vector-menu {
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Optional: subtle left margin so text doesn’t sit on the edge */
#mw-panel .body,
#mw-panel .vector-menu-content-list {
  padding-left: 10px;
}