Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for 5rem (0.01 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/webapp/css/chat.css

        padding: 1.5rem 1rem 1rem;
        z-index: 10;
    }
    
    .progress-steps {
        display: flex;
        justify-content: center;
        gap: 0.25rem;
        margin-bottom: 0.75rem;
    }
    
    .progress-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.5rem;
        min-width: 70px;
        opacity: 0.4;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  2. docs/en/docs/css/custom.css

    /* Give space to lower icons so Gitter chat doesn't get on top of them */
    .md-footer-meta {
      padding-bottom: 2em;
    }
    
    .md-footer-meta .md-social {
      padding-right: 4rem;
    }
    
    .user-list {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }
    
    .user-list-center {
      justify-content: space-evenly;
    }
    
    .user {
      margin: 1em;
      min-width: 7em;
    }
    
    .user .avatar-wrapper {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:56:46 GMT 2026
    - 6.6K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/math/LongMath.java

      @SuppressWarnings("fallthrough")
      public static long divide(long p, long q, RoundingMode mode) {
        checkNotNull(mode);
        long div = p / q; // throws if q == 0
        long rem = p - q * div; // equals p % q
    
        if (rem == 0) {
          return div;
        }
    
        /*
         * Normal Java division rounds towards 0, consistently with RoundingMode.DOWN. We just have to
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 09 23:01:02 GMT 2026
    - 46.8K bytes
    - Click Count (0)
Back to Top