Skip to main content

Clases css

Bookstack permite añadir a las cabeceras estilos CSS.

<style>
h1 {
  font-size: 2.6em;
}
h2 {
  font-size: 2.2em;
}
h3 {
  font-size: 1.8em;
}
h4 {
  font-size: 1.4em;
}
thead {
  text-align: left;
}
tbody {
  font-size: 0.8em;
}
img {
 border: 1px solid #f0f0f0;
}
.logo-image {
  border: 0px;
}
.logo-text {
  font-size: 1.5em;
}
.text-white {
  color:white;
}
.text-red {
  color:red;
}
.text-blue {
  color: blue;
}
.text-justify {
  text-align: justify;
}
.text-center {
  text-align: center;
}
.bg-danger {
  background-color: #dc3545 !important;
}
</style>