Skip to content
Snippets Groups Projects
Select Git revision
  • 95c30de0b966e100b4e701164daeebb1c6f34a24
  • 3.9 default
  • develop
  • 6.0
  • 5.0
  • 4.0
  • scrutinizer-patch-4
  • scrutinizer-patch-3
  • scrutinizer-patch-2
  • scrutinizer-patch-1
  • 3.7
  • 3.8
  • 3.6
  • 3.9_backported
  • 3.8_backported
  • 3.7_backported
  • 3.5
  • 3.6_backported
  • 3.5_backported
  • 3.4
  • 3.3_backported
  • 6.0.4
  • 6.0.3
  • 5.0.7
  • 6.0.2
  • 6.0.1
  • 5.0.6
  • 6.0.0
  • 5.0.5
  • 6.0.0-rc
  • 5.0.4
  • 6.0.0-beta
  • 5.0.3
  • 4.0.6
  • 5.0.2
  • 5.0.1
  • 4.0.5
  • 5.0.0
  • 4.0.4
  • 5.0.0-rc2
  • 5.0.0-rc1
41 results

index.php

Blame
  • index.css 717 B
    :root {
      /* Colors */
      --letterbox-color: rgba(0 0 0 / 100%);
      --app-background-color: rgba(239 239 239 / 100%);
      --font-color: rgba(0 0 0 / 100%);
    
      /* Sizes */
      --minimum-app-size: 300px;
    }
    
    body {
      margin: 0;
      font-family: sans-serif;
      color: var(--font-color);
    }
    
    #root {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: var(--letterbox-color);
    }
    
    #portrait {
      position: relative;
      margin: auto;
      min-width: var(--minimum-app-size);
      min-height: var(--minimum-app-size);
      width: 100%;
      height: 100%;
      max-width: 62.5vh;
      background: var(--app-background-color);
      overflow: hidden;
      transform: scale(1);
    }
    
    button {
      -webkit-tap-highlight-color: transparent;
    }