Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

HTML
<style type="text/css">
    .lms * {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
    }

    .lms-text-center {
      text-align: center;
    }

    .lms-full-height {
      height: 100%;
    }

    .lms-container {
      margin-right: auto;
      margin-left: auto;
    }

    .lms-row {
	  width: 100%;
      display: -moz-box;
      -moz-flex-flow: row wrap;
      -moz-justify-content: center;

      display: -ms-flexbox;
      -ms-flex-flow: row wrap;
      -ms-justify-content: center;
      
      display: -webkit-flex;
      display: -webkit-box;
      -webkit-flex-flow: row wrap;
      -webkit-justify-content: center;

      display: flex;
      flex-flow: row wrap;      
      justify-content: center;     

    }

    .lms-col {
      width: 100%;
      padding-right: 15px;
      padding-left: 15px;
      margin-bottom: 30px;
    }

    .lms-panel {
      border: 1px solid #dadada;
      border-radius: 4px;
      padding: 30px;
    }

    .lms-panel .lms-panel-thumb {
      width: 35px;
    }

    .lms-panel .lms-panel-title {
      font-size: 20px;
      color: #CB1959;
      margin-top: 15px;
    }

    .lms-panel .lms-panel-title a {
      color: #CB1959;
      font-weight: bold;
    }

    .lms-panel .lms-panel-text {
      color: #58595b;
      line-height: 1.75;
      margin-bottom: 0;
    }
  </style>
<div class="lms">
    <div class="lms-container">
      <div class="lms-row">
        <div class="lms-col">
          <div class="lms-panel lms-text-center lms-full-height">
            <img class="lms-panel-thumb" src="https://tdn.totvs.com/download/attachments/642638128680243572/ajuda.png">
            <h1 class="lms-panel-title">
              <a href="https://tdn.totvs.com/x/w4f5DQ">Documentação movida para um novo local!</a>
            </h1>
            <p class="lms-panel-text">O Guia do usuário completo do TOTVS Fluig Plataforma foi movido para a <a href = "https://tdn.totvs.com/x/w4f5DQ">Central de ajuda TOTVS Fluig</a>.</p>
          </div>
      </div>
    </div>
</div>

...