User:76561197969631737/common.css: Difference between revisions

From Against the Storm Official Wiki
(Created page with "→‎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 swapp...")
 
m (76561198012490491 moved page User:Aeredor/common.css to User:76561197969631737/common.css: Automatically moved page while merging the account "Aeredor" to "Aeredor")
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
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 */
/* Dark mode styles for ATS recipe table */
.ATSrecipe {
.ATSrecipe {

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;
}