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

From Campaigns
Jump to navigation Jump to search
Created page with "table.stats th { text-align: center; font-size: 12px; font-weight: bold; } table.stats td { text-align: center; font-size: 18px; }"
 
mNo edit summary
 
(5 intermediate revisions by the same user not shown)
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 {
  font-size: 18px;
}
 
.stats {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
}
 
.stats-row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
 
.stats-header,
.stats-cell {
   text-align: center;
   text-align: center;
  font-size: 18px;
}
}

Latest revision as of 05:55, 13 February 2022

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

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

.stats {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
}

.stats-row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

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