Template:Move Target Grid/styles.css: Difference between revisions

From Pixelrus
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:
.move-target-grid {
.move-target-grid {
   text-align: center;
   text-align: center;
border: 2px solid;
}
}
.move-target-grid td{
.move-target-grid td{
Line 8: Line 9:
   font-size: 90%;
   font-size: 90%;
   border-radius: 9px;
   border-radius: 9px;
border: 3px solid;
border: 1px solid;
}
}
.move-target-grid th {
.move-target-grid th {
Line 15: Line 16:
   border-radius: 9px;
   border-radius: 9px;
   background: #f0f0f0;
   background: #f0f0f0;
border: 3px solid;
border: 1px solid;
}
}



Revision as of 08:09, 25 May 2025

/* core table */
.move-target-grid {
  text-align: center;
border: 2px solid;
}
.move-target-grid td{
  width: 60px;
  height: 38px;
  font-size: 90%;
  border-radius: 9px;
border: 1px solid;
}
.move-target-grid th {
  font-size: 90%;
  height: 38px;
  border-radius: 9px;
  background: #f0f0f0;
border: 1px solid;
}


/* default squares */
.tg-self { background: #80a4d4; }   /* user */
.tg-ally { background: #80a4d4; }   /* allies not hit */
.tg-foe  { background: #ffd966; }   /* foes not hit */

/* hit overlay */
.tg-hit  { background: #ff6666 !important; }