Skip to content
Snippets Groups Projects
Select Git revision
  • 405533798eba6c83ebe38fc0b48e3db1d7b28e5d
  • master default protected
2 results

scodoc.css

Blame
  • Forked from Jean-Marie Place / SCODOC_R6A06
    Source project has a limited visibility.
    scodoc.css 80.78 KiB
    /*   ScoDoc, (c) Emmanuel Viennet 1998 - 2024
     */
    
    :root {
      --sco-content-min-width: 600px;
      --sco-content-max-width: 1024px;
      --sco-color-explication: rgb(10, 58, 140);
      --sco-color-background: rgb(242, 242, 238);
      --sco-color-box-bg: rgb(243, 240, 228);
      --sco-color-mod-std: #afafc2;
      --sco-color-ressources: #f8c844;
      --sco-color-saes: #c6ffab;
      --sco-color-ues: #0051a9;
    }
    
    html,
    body {
      background-color: var(--sco-color-background);
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 12pt;
      margin: 0;
      padding: 0;
      width: 100%;
    }
    
    @media print {
      .noprint {
        display: none;
      }
    }
    
    h1,
    h2,
    h3 {
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
    
    h3 {
      font-size: 14pt;
      font-weight: bold;
    }
    
    body a {
      color: rgb(4, 16, 159);
    }
    
    details>summary:first-of-type {
      display: list-item !important;
    }
    
    div.container {
      margin-bottom: 24px;
    }
    
    div.sco-app-content {
      display: flex;
      flex-direction: column;
    }
    
    div.scobox {
      flex: 1 0 0;
      /* Equal width for all boxes */
      max-width: var(--sco-content-max-width);
      /* margin: 5px; Optional: Add margin between boxes */
    
      background-color: var(--sco-color-box-bg);
      margin-top: 12px;
      margin-bottom: 12px;
      margin-right: 12px;
      padding: 8px;