Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
1 result

style.css

  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    style.css 1.04 KiB
    body {
        padding-top: 65px;
        padding-bottom: 10px;
    }
    
    .alert {
        font-weight: bold;
        text-align: center;
    }
    
    .alert-error {
        color: #800000;
    }
    
    .alert-success {
        color: #008000;
    }
    
    .alert-warning {
        color: #808000;
    }
    
    h2 > a, h3 > a {
        font-size: 18px;
    }
    
    h4 > a {
      font-size: 14px;
    }
    
    form:not(.form-inline) {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .form-inline {
        padding-bottom: 5px;
    }
    
    input[type="file"] {
        padding: 0;
    }
    
    .centered {
        text-align: center;
    }
    
    .centered > a, .centered > span {
        margin: 8px;
    }
    
    pre.error-description {
        white-space: pre-wrap;
    }
    
    .expansion-text {
        display: none;
        font-style: normal;
    }
    
    textarea {
      border: 0 none white;
      padding: 0;
      outline: none;
      background-color: #d0d0d0;
    }
    
    li.defaulttop {
        font-style: italic;
    }
    
    div.expandable {
      max-height: 4rem;
      overflow: hidden;
      cursor: zoom-in;
      box-shadow: 0px 0px 30px #d0d0d0;
      margin: 10px 0 10px 0;
      padding: 0 10px 0 10px;
    }
    
    div.expandable:focus-within {
      max-height: none;
      overflow: auto;
      cursor: default;
    }