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

semantic.css

Blame
  • semantic.css 379.31 KiB
    /*!
     * # Semantic UI 2.2.13 - Reset
     * http://github.com/semantic-org/semantic-ui/
     *
     *
     * Released under the MIT license
     * http://opensource.org/licenses/MIT
     *
     */
    
    /*******************************
                 Reset
    *******************************/
    
    /* Border-Box */
    
    *,
    *:before,
    *:after {
      -webkit-box-sizing: inherit;
      box-sizing: inherit;
    }
    
    html {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
    }
    
    /* iPad Input Shadows */
    
    input[type="text"],
    input[type="email"],
    input[type="search"],
    input[type="password"] {
      -webkit-appearance: none;
      -moz-appearance: none;
      /* mobile firefox too! */
    }
    
    /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
    
    /* Document
       ========================================================================== */
    
    /**
     * 1. Correct the line height in all browsers.
     * 2. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
    
    html {
      line-height: 1.15;
      /* 1 */
      -ms-text-size-adjust: 100%;
      /* 2 */
      -webkit-text-size-adjust: 100%;
      /* 2 */
    }
    
    /* Sections
       ========================================================================== */
    
    /**
     * Remove the margin in all browsers (opinionated).
     */
    
    body {
      margin: 0;
    }