LemmyNet/lemmyBB

h1 color and margin

Tealk opened this issue · 2 comments

Tealk commented

The h1 headline is displayed very poorly
image

.content h2, .panel h2 {

add above

.content h1, .panel h1 {
	color: #115098;
	border-bottom-color: #CCCCCC;
}

.content h2, .panel h2 {

add above

.content h1, .panel h1 {
  font-weight: bold;
  border-bottom: 1px solid transparent;
  font-size: 2em;
  margin-top: 1em;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
}

With the above changes it would look like this
image

Please make a pull request. Though i would prefer to put any css changes in assets/styles/lemmybb.css like the other pr, so that lemmybb can easily be used with other phpbb themes.

Tealk commented

i have to try that first, if there are no problems, because i want to avoid such aids like !importent.