79550568

Date: 2025-04-02 12:08:55
Score: 0.5
Natty:
Report link

Using this CSS finally solved it

code {
  font-family: "verdana";
  font-size: 18px;
  color: black;
  font-weight: bold !important;
  line-height: 1.5 !important;
  }
@media (max-width: 480px) {
code {
  font: 18px "verdana" !important;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
code {
  font: 18px "verdana" !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
code {
  font: 18px "verdana" !important;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
code {
  font: 18px "verdana" !important;
  }
}
@media (min-width: 1281px) {
code {
  font: 18px "verdana" !important;
  }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Zion ToDo