Ativa o menu
Toggle preferences menu
Alternar menu pessoal
Não autenticado(a)
Your IP address will be publicly visible if you make any edits.

Predefinição:Patronos/styles.css

De Runas & Campeões
Revisão de 14h18min de 31 de janeiro de 2023 por Luke Nitole (discussão | contribs) (Criou página com 'Style the button that is used to open and close the collapsible content: .collapsible { background-color: #eee; color: #444; cursor: pointer; padding: 18px; width: 100%; border: none; text-align: left; outline: none; font-size: 15px; } Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover): .active, .collapsible:hover { background-color: #ccc; } /* Style the col...')
(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)
/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}