User:76561197969631737/common.css

From Against the Storm Official Wiki

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
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;
}