Common.css: Difference between revisions
From Corporate Dawn Wiki
Created page with "→CSS placed here will be applied to all skins: .spoilers-body { border: 1px dashed #000; background-color: #eee; padding: 3px; display: none; color: #000; } .spoilers-body h1, .spoilers-body h2, .spoilers-body h3, .spoilers-body h4, .spoilers-body h5, .spoilers-body h6 { color: #000; } .spoilers-button { background: #517398; border: 1px solid #999; border-radius: 5px; padding: 3px 10px; transition: 0.1s background-position linear; color: #000; } .spoil..." |
No edit summary |
||
| Line 23: | Line 23: | ||
padding: 3px 10px; | padding: 3px 10px; | ||
transition: 0.1s background-position linear; | transition: 0.1s background-position linear; | ||
color: # | color: #fff; | ||
font-weight: bold; | |||
} | } | ||
.spoilers-button:hover { | .spoilers-button:hover { | ||
background: # | background: #8c489f; | ||
cursor: pointer; | cursor: pointer; | ||
} | } | ||
Latest revision as of 03:29, 14 August 2024
/* CSS placed here will be applied to all skins */
.spoilers-body {
border: 1px dashed #000;
background-color: #eee;
padding: 3px;
display: none;
color: #000;
}
.spoilers-body h1,
.spoilers-body h2,
.spoilers-body h3,
.spoilers-body h4,
.spoilers-body h5,
.spoilers-body h6 {
color: #000;
}
.spoilers-button {
background: #517398;
border: 1px solid #999;
border-radius: 5px;
padding: 3px 10px;
transition: 0.1s background-position linear;
color: #fff;
font-weight: bold;
}
.spoilers-button:hover {
background: #8c489f;
cursor: pointer;
}