Skip to content
Snippets Groups Projects
Select Git revision
  • b8946e8225ed807b46aa629299b7b1fdcaa1d273
  • master default
  • feat/pull_changes
3 results

style.css

Blame
  • user avatar
    Aymeric Bernard authored
    b8946e82
    History
    style.css 1.10 KiB
    .mini p {
      color: #dddddd;
      margin: 0;
    }
    
    .bloc {
      margin-bottom: 10px;
    }
    
    .text-bloc {
      min-height: var(--rowHeight);
      border: 1px solid black;
      background-color: #e2ffe0;
      padding: 10px;
      display: flex;
      justify-content: space-between;
    }
    
    .image-bloc {
      border: 1px solid black;
      background-color: #ffdddd;
    }
    
    .image-bloc img {
      height: 100%;
      margin-left: auto;
      margin-right: auto;
      display: block;
    }
    
    .image-text-bloc {
      border: 1px solid black;
      background-color: #ffffdd;
      padding: 10px;
      display: flex;
    }
    
    img.row-icon {
      height: 100px;
      margin-top: auto;
      margin-bottom: auto;
      margin-right: 10px;
    }
    
    .image-text-bloc > .text-section {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    
    .text-element {
      font-size: var(--fontSize);
      margin-top: auto;
      margin-bottom: auto;
      margin-left: 10px;
      padding-top: 10px;
      padding-bottom: 10px;
      border: 1px solid #ccc;
    }
    
    .image-text-bloc > .text-section > .text-element:last-child {
      white-space: nowrap;
      flex-grow: 1;
      text-align: right;
    }
    
    .text-section > .text-element:first-child {
      margin-left: 0px;
    }