Template:Monster stats/style.css: Difference between revisions

From Campaigns
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
table.stats th {
.stats-header {
  text-align: center;
   font-size: 12px;
   font-size: 12px;
   font-weight: bold;
   font-weight: bold;
}
}


table.stats td {
.stats-cell {
  text-align: center;
   font-size: 18px;
   font-size: 18px;
}
}


table.stats {
.stats {
  display: table;
   width: 100%;
   width: 100%;
   max-width: 600px;
   max-width: 600px;
}
.stats-row {
  display: table-row;
}
.stats-header,
.stats-cell {
  display: table-cell;
  text-align: center;
}
}

Revision as of 05:43, 13 February 2022

.stats-header {
  font-size: 12px;
  font-weight: bold;
}

.stats-cell {
  font-size: 18px;
}

.stats {
  display: table;
  width: 100%;
  max-width: 600px;
}

.stats-row {
  display: table-row;
}

.stats-header,
.stats-cell {
  display: table-cell;
  text-align: center;
}