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

From Campaigns
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
(4 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 {
  text-align: center;
   font-size: 18px;
   font-size: 18px;
}
}


table.stats {
.stats {
  display: flex;
  flex-direction: column;
   width: 100%;
   width: 100%;
   max-width: 600px;
   max-width: 700px;
}
 
.stats-row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
 
.stats-header,
.stats-cell {
  text-align: center;
}
}

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