455
edits
mNo edit summary |
mNo edit summary |
||
| Line 2: | Line 2: | ||
/* Apply to the whole page wrapper */ | /* Apply background to the whole page wrapper */ | ||
#mw-wrapper { | #mw-wrapper { | ||
background-color: #ffffff; /* base white */ | |||
background-image: linear-gradient(90deg, #f5f5f5 1px, transparent 1px), | |||
linear-gradient(#f5f5f5 1px, transparent 1px); | |||
background-size: 20px 20px; /* grid size */ | |||
} | |||
/* Keep the content readable with a solid background */ | |||
#content { | |||
background-color: #ffffff; | background-color: #ffffff; | ||
border: 2px solid #007acc; /* accent border */ | |||
padding: 20px; | |||
} | } | ||