Jump to content

Template:Emotes.css: Difference between revisions

From Joepedia
No edit summary
m Protected "Template:Emotes.css" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
 
(14 intermediate revisions by the same user not shown)
Line 2: Line 2:
   font-size: 1.5em;
   font-size: 1.5em;
   columns: 3;
   columns: 3;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, 9em);
  justify-content: center;
  gap: 0.2em;
}
.emotes > li {
background-color: #ccc1;
padding: 0.2em;
}
}


Line 7: Line 19:
.emotes {
.emotes {
  font-size: 1em;
  font-size: 1em;
  line-height: 1.5em;
  columns: 2;
}
}
}
}

Latest revision as of 20:53, 14 February 2025

.emotes {
  font-size: 1.5em;
  columns: 3;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, 9em);
  justify-content: center;
  gap: 0.2em;
}

.emotes > li {
	background-color: #ccc1;
	padding: 0.2em;
}

@media (max-width: 30em) {
	.emotes {
	  font-size: 1em;
	}
}

@media (min-width: 60em) {
	.emotes {
	  font-size: 1.75em;
	}
}