Á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">
    .cards-container {
        width: 100%;
        height: auto;
        margin: auto;
        display: flex;
        flex-direction: column;045B8F
        box-sizing: border-box;
        justify-items: center;
    }

    .card {
        width: 100%;
        height: auto;
        display: flex;
        margin: auto auto 20px auto;
        box-shadow: 0px 2px 4px #00000029;
        border-radius: 10px;
    }

    .card-image {
        object-fit: cover;
        width: 43%;
        max-width: 420px;

        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .card-image.card-image-full {
        width: 100%;
        max-width: inherit;
        border-radius: 10px;
        display: block;
    }

    .card-text-container {
        text-align: left;
        padding: 30px;
    }

    .card-label {
        color: orange;
        font-weight: bold;
        font-size: 13px;
    }

    #card-title-link {
        text-decoration: none;
        color: #045B8F;
        font-weight: bold;
        font-size: 17px;
    }

    #card-title-link:hover {
        text-decoration: underline;
    }

    .card-desc {
        margin: 0 !important;
        font-size: 15px;
        font-weight: 400;
        letter-spacing: 0px;
        color: #494440;
    }

    .card-text-margin-bottom {
        margin: 0 0 5px 0 !important;
    }
</style>

<section class="cards-container">
    <div class="card">
            <img 
            class="card-image card-image-full" 
            src="" 
            alt=""
        >        
    </div>
</section>

...

Conheça nosso novo espaço de documentações iPaas!


Nosso repositório de documentações mudou. Acesse agora mesmo nosso novo espaço e fique por dentro de todas as novidades do TOTVS iPaaS aqui.

Deck of Cards
idsample
Card
id1
label
Painel
borderColor#f2f2f2
bgColor#f2f2f2


Image Added

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;
      max-width: 1046px;
    }

    .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: 33.333333%;
      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: 87px;
    }

    .lms-panel .lms-panel-title {
      font-size: 20px;
      color: #045B8F;
    }

    .lms-panel .lms-panel-title > a {
      color: #045B8F;
      font-weight: bold;
    }

    .lms-panel .lms-panel-text {
      color: #045B8F;
      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="http://tdn.totvs.com/download/attachments/471951035/release-notes.png">
            <h1 class="lms-panel-title">
              <a href="https://tdn.totvs.com/pages/viewpage.action?pageId=521124673">O que há de novo?</a>
            </h1>
            <p class="lms-panel-text">Divulgamos todas as novidades e correções de cada atualização do aplicativo.</p>
          </div>
        </div>

        <div class="lms-col">
          <div class="lms-panel lms-text-center lms-full-height">
          	<img class="lms-panel-thumb" src="http://tdn.totvs.com/download/attachments/471951035/guia-usu%C3%A1rio.png">
            <h1 class="lms-panel-title">
              <a href="https://tdn.totvs.com/pages/viewpage.action?pageId=521124880">Guia do usuário</a>
            </h1>
            <p class="lms-panel-text">Listamos – passo a passo – as ações que você pode efetuar como administrador.</p>
          </div>
        </div>
		
        <div class="lms-col">
          <div class="lms-panel lms-text-center lms-full-height">
            <img class="lms-panel-thumb" src="http://tdn.totvs.com/download/thumbnails/471951035/perguntas-frequentes.png">
            <h1 class="lms-panel-title">
              <a href="https://tdn.totvs.com/display/CON/Perguntas+frequentes">Perguntas frequentes</a>
            </h1>
            <p class="lms-panel-text">Reunimos as perguntas mais frequentes para tornar sua busca por soluções mais ágil e fluída.</p>
          </div>
        </div>

      </div>
    </div>
</div>

Saiba o que há de novo!

HTML
<style type="text/css"> .cards-container { width: 100%; height: auto; margin: auto; display: flex; flex-direction: column; box-sizing: border-box; justify-items: center; } .card { width: 100%; height: auto; display: flex; margin: auto auto 20px auto; box-shadow: 0px 2px 4px #00000029; border-radius: 10px; } .card-image { object-fit: cover; width: 43%; max-width: 420px; border-top-left-radius: 10px; border-bottom-left-radius: 10px; } .card-text-container { text-align: left; padding: 30px; } .card-label { color: orange; font-weight: bold; font-size: 13px; } #card-title-link { text-decoration: none; color: #045B8F; font-weight: bold; font-size: 17px; } #card-title-link:hover { text-decoration: underline; } .card-desc { margin: 0 !important; font-size: 15px; font-weight: 400; letter-spacing: 0px; color: #494440; } .card-text-margin-bottom { margin: 0 0 5px 0 !important; } </style> <section class="cards-container"> <div class="card"> <img class="card-image" src="https://tdn.totvs.com/download/attachments/66618185/home-novo-collab.png?" alt="" > <div class="card-text-container"> <h2 id="card-title" class="card-text-margin-bottom"> <a href="https://tdn.totvs.com/pages/viewpage.action?pageId=521124673#Oqueh%C3%A1denovo?-Atualiza%C3%A7%C3%B5es%3E" id="card-title-link">Atualizações > 05/07/2023 </a> </h2> <p class="card-desc">Fique por dentro de todas as novidades da última grande atualização do TOTVS iPaaS para agregar valor ao seu negócio. </p> </div> </div> </section>


Fale conosco!


HTML
<style type="text/css">
    .cards-container {
        width: 100%;
        height: auto;
        margin: auto;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        justify-items: center;
    }

    .card {
        width: 100%;
        height: auto;
        display: flex;
        margin: auto auto 20px auto;
        box-shadow: 0px 2px 4px #00000029;
        border-radius: 10px;
    }

    .card-image {
        object-fit: cover;
        width: 43%;
        max-width: 420px;

        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .card-text-container {
        text-align: left;
        padding: 30px;
    }

    .card-label {
        color: orange;
        font-weight: bold;
        font-size: 13px;
    }

    #card-title-link {
        text-decoration: none;
        color: #045B8F;
        font-weight: bold;
        font-size: 17px;
    }

    #card-title-link:hover {
        text-decoration: underline;
    }

    .card-desc {
        margin: 0 !important;
        font-size: 15px;
        font-weight: 400;
        letter-spacing: 0px;
        color: #494440;
    }

    .card-text-margin-bottom {
        margin: 0 0 5px 0 !important;
    }
</style>

<section class="cards-container">
    <div class="card">
        
        <div class="card-text-container">
            <p class="card-label card-text-margin-bottom">Suporte</p>
            <h2 id="card-title" class="card-text-margin-bottom">
                <a href="https://totvscst.zendesk.com/hc/pt-br/#home" id="card-title-link" target="blank">Precisa de ajuda e não encontrou por aqui?</a>
            </h2>
            <p class="card-desc">Entre em contato pelo <a href="https://totvscst.zendesk.com/hc/pt-br/#home" target="blank">Portal de clientes</a>. A equipe de atendimento do TOTVS iPaaS estará pronta para lhe ajudar.</p>
        </div>
    </div>
</section>

...