<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 * Arquivo: formulario.css
 *
 * @author     Guilherme Rojas &lt;guilhermehrojas@gmail.com&gt;
 *
 *-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/

form {
  font-size: 1.2em;
}

div.formulario,dl.formulario {
  width: 837px;
  margin: 0 auto;
}

dl.formulario
{
 /* height: 58px; */
 min-height: 58px;
}

div.formulario &gt; label.titulo
{
  font-size: 1.2em;
  display: block;
  padding-bottom: 12px;
  padding-left: 18px;
  font-weight: bolder;
}

dl.formulario.expandido{
  height: inherit;
}

dt.formulario {
  width: 180px;
  vertical-align: top;
  text-align: right;
  padding-right: 12px;
  display: inline-block;
}

dd.formulario {
  width: 70%;
  margin: 0px;
  display: inline-block;
  position: relative;
}

label {
  width: inherit;
  font-size: 1em;
  font-weight: bold;
  line-height: 30px;
}

input, textarea, select {
  width: inherit;
  border: 1px solid #dddddd;
  padding: 6px 12px;
  border-radius: 4px;
  color: #31708F;
  font-size: 15px;
  text-align: center;
}

input, textarea {
  padding: 0px; 
  padding-top: 6px;
  padding-bottom: 12px;
}

option {
  padding: 4px 8px;
  font-size: 0.9em;
}

div.composto {
  display: inline-table;
  box-sizing: border-box;
  width: inherit;
}

input[type="submit"], button, a.botao {
  background-color: #D9EDF7;
  border: 1px solid #BCE8F1;
  color: #31708F;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 1.2em;
  margin: 0 auto; 
}

a.botao {
  padding: 7px 12px; /* tamanho equivalente ao do botÃ£o */
  vertical-align: middle;
  /* evitando invasÃ£o de outros espaÃ§os*/
  margin: 1px;
  display: inline-block;
}

a.botao:hover {
  text-decoration: none;
}

input[type="submit"]:hover, button:hover {
  background-color: #31708F;
  border-color: #31708F;
  color: #FFFFFF;
}

button.atencao, a.botao-amarelo { /* bootstrap colors pattern */
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

button.atencao:hover, a.botao-amarelo:hover {
  background-color: #8a6d3b;
  border-color: #8a6d3b;
  color: #FFFFFF;
}

a.botao-verde { /* bootstrap colors pattern */
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

a.botao-verde:hover {
  background-color: #d6e9c6;
  border-color: #dff0d8;
  color: #FFFFFF;
}

a.botao-vermelho { /* bootstrap colors pattern */
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

a.botao-vermelho:hover {
  background-color: #ebccd1;
  border-color: #f2dede;
  color: #FFFFFF;
}

a.botao-azul {
  background-color: #D9EDF7;
  border-color: #BCE8F1;
  color: #31708F;
}

a.botao-azul:hover {
  background-color: #31708F;
  border-color: #31708F;
  color: #FFFFFF;
}

div.agrupamento-vertical {
  display: inline-table;
  vertical-align: top;
  width: 24px;
  text-align: center;
  padding-right: 8px;
  height: inherit;
}

span.agrupamento-vertical {
  display: table-row;
  line-height: 10px;
  font-size: 10px;
}

input.pequeno {
  width: 148px;
  float: right;
}

input.medio {
  width: 268px;
  margin-top: 1px; /* alinhamento com combobox */
}

input.dia-da-semana {
  margin: 0 auto;
}

.espacamento-direito {
  margin-right: 12px;
}

select.pequeno {
  width: 64px;
}

select.medio {
  width: 128px;
}

.a-direita {
  float: right;
}

select.mes {
  width: 180px;
}

button.icone {
  padding: 0px;
  padding-bottom: 2px;
  margin: 0px;
  margin-top: 16px;
  width: 28px;
  border-radius: 22px;
  float: right;
}

dl.curto
{
  height: 34px;
}

dl.grande
{
  height: 68px;
}

dl.xgrande
{
  height: 88px;
}

div.horario
{
  display: inline-table;
  width: 160px;
  float: right;
}

div.horario &gt; input
{
  width: 110px;
  height: 10px;
  font-size: 12px;
}

div.horario &gt; input:focus
{
  border: 1px solid #BCE8F1;
}

@media screen and (max-width: 750px)
{
  dl.formulario, div.formulario {
    height: auto;
    width: 80%;
    margin-bottom: 12px;
  }

  dt.formulario, dd.formulario {
    display: block;
  } 

  dt.formulario {
    width: 100%;
    padding: 0px;
    text-align: left;
  }

  dd.formulario {
    width: 100%;
  }

  div.composto &gt; select {
    width: 30% !important;
    font-size: 1.0em;
  }

}

span.ex-botao {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
  padding: 7px 12px; /* tamanho equivalente ao do botÃ£o */
  vertical-align: middle;
  /* evitando invasÃ£o de outros espaÃ§os*/
  margin: 1px;
  display: inline-block;
}

span.ex-botao:hover {
  background-color: #ebccd1;
  border-color: #f2dede;
  text-decoration: none;
  text-decoration: line-through;
}

@media screen and (max-width: 500px)
{
  dl.formulario {
    width: 90%;
  }
}

</pre></body></html>