User:76561197969631737/common.css: Difference between revisions
From Against the Storm Official Wiki
No edit summary |
m (76561198012490491 moved page User:Aeredor/common.css to User:76561197969631737/common.css: Automatically moved page while merging the account "Aeredor" to "Aeredor") |
||
(One intermediate revision by one other user not shown) | |||
Line 2: | Line 2: | ||
background-color: #333; | background-color: #333; | ||
color: #fff; | color: #fff; | ||
} | |||
/* Walkthrough tooltips */ | |||
.walkthrough-step { | |||
background-color: #f8f8f8; | |||
border: 1px solid #ddd; | |||
border-radius: 3px; | |||
padding: 10px 15px 10px 50px; | |||
position: relative; | |||
} | |||
.walkthrough-step img { | |||
position: absolute; | |||
top: 50%; | |||
left: 15px; | |||
transform: translateY(-50%); | |||
} | |||
.walkthrough-step p { | |||
margin-left: 35px; | |||
} | } | ||
Latest revision as of 16:18, 13 December 2023
body { background-color: #333; color: #fff; } /* Walkthrough tooltips */ .walkthrough-step { background-color: #f8f8f8; border: 1px solid #ddd; border-radius: 3px; padding: 10px 15px 10px 50px; position: relative; } .walkthrough-step img { position: absolute; top: 50%; left: 15px; transform: translateY(-50%); } .walkthrough-step p { margin-left: 35px; } /* Dark mode styles for ATS recipe table */ .ATSrecipe { background-color: #333; color: #fff; border: 1px solid #777; border-collapse: collapse; } .ATSrecipe th { background-color: #555; border: 1px solid #777; padding: 5px; } .ATSrecipe td { background-color: #333; border: 1px solid #777; padding: 5px; } /* Dark mode styles for ATS required table cells */ .ATSrequired { background-color: #aaa; border: 2px solid #bbb; padding: 5px; } /* Dark mode styles for ATS swappable table cells */ .ATSswappable { background-color: #ccc; border: 2px solid #ddd; padding: 5px; }