motion-prime 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
 - data/CHANGELOG.md +3 -0
 - data/Gemfile.lock +1 -1
 - data/README.md +10 -0
 - data/doc/code/getting_started.rb +61 -0
 - data/doc/docs/docco.css +500 -0
 - data/doc/docs/getting_started.html +177 -0
 - data/doc/docs/public/fonts/aller-bold.eot +0 -0
 - data/doc/docs/public/fonts/aller-bold.ttf +0 -0
 - data/doc/docs/public/fonts/aller-bold.woff +0 -0
 - data/doc/docs/public/fonts/aller-light.eot +0 -0
 - data/doc/docs/public/fonts/aller-light.ttf +0 -0
 - data/doc/docs/public/fonts/aller-light.woff +0 -0
 - data/doc/docs/public/fonts/novecento-bold.eot +0 -0
 - data/doc/docs/public/fonts/novecento-bold.ttf +0 -0
 - data/doc/docs/public/fonts/novecento-bold.woff +0 -0
 - data/doc/docs/public/stylesheets/normalize.css +375 -0
 - data/files/app/sections/sidebar/action.rb +1 -1
 - data/motion-prime/app_delegate.rb +8 -2
 - data/motion-prime/elements/_content_padding_mixin.rb +12 -12
 - data/motion-prime/elements/_content_text_mixin.rb +65 -0
 - data/motion-prime/elements/base.rb +51 -19
 - data/motion-prime/elements/button.rb +1 -1
 - data/motion-prime/elements/draw.rb +26 -113
 - data/motion-prime/elements/draw/_draw_background_mixin.rb +26 -0
 - data/motion-prime/elements/draw/image.rb +10 -1
 - data/motion-prime/elements/draw/label.rb +61 -42
 - data/motion-prime/elements/draw/view.rb +14 -0
 - data/motion-prime/elements/error_message.rb +1 -1
 - data/motion-prime/elements/label.rb +1 -1
 - data/motion-prime/elements/text_field.rb +2 -2
 - data/motion-prime/elements/text_view.rb +3 -0
 - data/motion-prime/helpers/has_style_chain_builder.rb +1 -1
 - data/motion-prime/helpers/has_styles.rb +28 -0
 - data/motion-prime/models/bag.rb +1 -1
 - data/motion-prime/models/sync.rb +4 -4
 - data/motion-prime/screens/_base_mixin.rb +1 -1
 - data/motion-prime/screens/extensions/_navigation_bar_mixin.rb +7 -0
 - data/motion-prime/screens/sidebar_container_screen.rb +8 -2
 - data/motion-prime/sections/_cell_section_mixin.rb +25 -0
 - data/motion-prime/sections/base.rb +17 -16
 - data/motion-prime/sections/draw.rb +32 -10
 - data/motion-prime/sections/form.rb +27 -17
 - data/motion-prime/sections/form/base_field_section.rb +0 -1
 - data/motion-prime/sections/form/base_header_section.rb +3 -2
 - data/motion-prime/sections/form/password_field_section.rb +1 -1
 - data/motion-prime/sections/table.rb +31 -10
 - data/motion-prime/sections/table/base_cell_section.rb +1 -22
 - data/motion-prime/sections/table/draw_cell_section.rb +5 -0
 - data/motion-prime/styles/form.rb +12 -4
 - data/motion-prime/support/_key_value_store.rb +0 -2
 - data/motion-prime/support/dm_text_field.rb +2 -2
 - data/motion-prime/support/tab_bar_controller.rb +28 -0
 - data/motion-prime/version.rb +1 -1
 - data/motion-prime/views/_frame_calculator_mixin.rb +75 -0
 - data/motion-prime/views/view_styler.rb +36 -94
 - metadata +23 -4
 - data/motion-prime/elements/_field_dimensions_mixin.rb +0 -59
 - data/motion-prime/elements/_text_dimensions_mixin.rb +0 -35
 
| 
         @@ -0,0 +1,177 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!DOCTYPE html>
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            <html>
         
     | 
| 
      
 4 
     | 
    
         
            +
            <head>
         
     | 
| 
      
 5 
     | 
    
         
            +
              <title>getting_started.rb</title>
         
     | 
| 
      
 6 
     | 
    
         
            +
              <meta http-equiv="content-type" content="text/html; charset=UTF-8">
         
     | 
| 
      
 7 
     | 
    
         
            +
              <meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
         
     | 
| 
      
 8 
     | 
    
         
            +
              <link rel="stylesheet" media="all" href="docco.css" />
         
     | 
| 
      
 9 
     | 
    
         
            +
            </head>
         
     | 
| 
      
 10 
     | 
    
         
            +
            <body>
         
     | 
| 
      
 11 
     | 
    
         
            +
              <div id="container">
         
     | 
| 
      
 12 
     | 
    
         
            +
                <div id="background"></div>
         
     | 
| 
      
 13 
     | 
    
         
            +
                
         
     | 
| 
      
 14 
     | 
    
         
            +
                <ul class="sections">
         
     | 
| 
      
 15 
     | 
    
         
            +
                    
         
     | 
| 
      
 16 
     | 
    
         
            +
                      <li id="title">
         
     | 
| 
      
 17 
     | 
    
         
            +
                          <div class="annotation">
         
     | 
| 
      
 18 
     | 
    
         
            +
                              <h1>getting_started.rb</h1>
         
     | 
| 
      
 19 
     | 
    
         
            +
                          </div>
         
     | 
| 
      
 20 
     | 
    
         
            +
                      </li>
         
     | 
| 
      
 21 
     | 
    
         
            +
                    
         
     | 
| 
      
 22 
     | 
    
         
            +
                    
         
     | 
| 
      
 23 
     | 
    
         
            +
                    
         
     | 
| 
      
 24 
     | 
    
         
            +
                    <li id="section-1">
         
     | 
| 
      
 25 
     | 
    
         
            +
                        <div class="annotation">
         
     | 
| 
      
 26 
     | 
    
         
            +
                          
         
     | 
| 
      
 27 
     | 
    
         
            +
                          <div class="pilwrap ">
         
     | 
| 
      
 28 
     | 
    
         
            +
                            <a class="pilcrow" href="#section-1">¶</a>
         
     | 
| 
      
 29 
     | 
    
         
            +
                          </div>
         
     | 
| 
      
 30 
     | 
    
         
            +
                          <p><strong>1. Install required tools.</strong></p>
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
                        </div>
         
     | 
| 
      
 33 
     | 
    
         
            +
                        
         
     | 
| 
      
 34 
     | 
    
         
            +
                        <div class="content"><div class='highlight'><pre>---</pre></div></div>
         
     | 
| 
      
 35 
     | 
    
         
            +
                        
         
     | 
| 
      
 36 
     | 
    
         
            +
                    </li>
         
     | 
| 
      
 37 
     | 
    
         
            +
                    
         
     | 
| 
      
 38 
     | 
    
         
            +
                    
         
     | 
| 
      
 39 
     | 
    
         
            +
                    <li id="section-2">
         
     | 
| 
      
 40 
     | 
    
         
            +
                        <div class="annotation">
         
     | 
| 
      
 41 
     | 
    
         
            +
                          
         
     | 
| 
      
 42 
     | 
    
         
            +
                          <div class="pilwrap ">
         
     | 
| 
      
 43 
     | 
    
         
            +
                            <a class="pilcrow" href="#section-2">¶</a>
         
     | 
| 
      
 44 
     | 
    
         
            +
                          </div>
         
     | 
| 
      
 45 
     | 
    
         
            +
                          <ul>
         
     | 
| 
      
 46 
     | 
    
         
            +
            <li>Ruby 1.9.3 or newer.</li>
         
     | 
| 
      
 47 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
                        </div>
         
     | 
| 
      
 50 
     | 
    
         
            +
                        
         
     | 
| 
      
 51 
     | 
    
         
            +
                        <div class="content"><div class='highlight'><pre><span class="variable">$ </span>rvm install <span class="number">2.0</span>.<span class="number">0</span></pre></div></div>
         
     | 
| 
      
 52 
     | 
    
         
            +
                        
         
     | 
| 
      
 53 
     | 
    
         
            +
                    </li>
         
     | 
| 
      
 54 
     | 
    
         
            +
                    
         
     | 
| 
      
 55 
     | 
    
         
            +
                    
         
     | 
| 
      
 56 
     | 
    
         
            +
                    <li id="section-3">
         
     | 
| 
      
 57 
     | 
    
         
            +
                        <div class="annotation">
         
     | 
| 
      
 58 
     | 
    
         
            +
                          
         
     | 
| 
      
 59 
     | 
    
         
            +
                          <div class="pilwrap ">
         
     | 
| 
      
 60 
     | 
    
         
            +
                            <a class="pilcrow" href="#section-3">¶</a>
         
     | 
| 
      
 61 
     | 
    
         
            +
                          </div>
         
     | 
| 
      
 62 
     | 
    
         
            +
                          <ul>
         
     | 
| 
      
 63 
     | 
    
         
            +
            <li>RubyMotion.</li>
         
     | 
| 
      
 64 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
                        </div>
         
     | 
| 
      
 67 
     | 
    
         
            +
                        
         
     | 
| 
      
 68 
     | 
    
         
            +
                        <div class="content"><div class='highlight'><pre>Visit http://www.rubymotion.com</pre></div></div>
         
     | 
| 
      
 69 
     | 
    
         
            +
                        
         
     | 
| 
      
 70 
     | 
    
         
            +
                    </li>
         
     | 
| 
      
 71 
     | 
    
         
            +
                    
         
     | 
| 
      
 72 
     | 
    
         
            +
                    
         
     | 
| 
      
 73 
     | 
    
         
            +
                    <li id="section-4">
         
     | 
| 
      
 74 
     | 
    
         
            +
                        <div class="annotation">
         
     | 
| 
      
 75 
     | 
    
         
            +
                          
         
     | 
| 
      
 76 
     | 
    
         
            +
                          <div class="pilwrap ">
         
     | 
| 
      
 77 
     | 
    
         
            +
                            <a class="pilcrow" href="#section-4">¶</a>
         
     | 
| 
      
 78 
     | 
    
         
            +
                          </div>
         
     | 
| 
      
 79 
     | 
    
         
            +
                          <p><strong>2. Create application delegate.</strong></p>
         
     | 
| 
      
 80 
     | 
    
         
            +
            <p>You should rewrite the <code>on_load</code> method, which will be runned after starting application.
         
     | 
| 
      
 81 
     | 
    
         
            +
            Note: you should always use AppDelegate class name.</p>
         
     | 
| 
      
 82 
     | 
    
         
            +
             
     | 
| 
      
 83 
     | 
    
         
            +
                        </div>
         
     | 
| 
      
 84 
     | 
    
         
            +
                        
         
     | 
| 
      
 85 
     | 
    
         
            +
                        <div class="content"><div class='highlight'><pre><span class="class"><span class="keyword">class</span> <span class="title">AppDelegate</span> <span class="inheritance">< <span class="parent">Prime::BaseAppDelegate</span></span></span>
         
     | 
| 
      
 86 
     | 
    
         
            +
              <span class="function"><span class="keyword">def</span> <span class="title">on_load</span><span class="params">(app, options)</span></span>
         
     | 
| 
      
 87 
     | 
    
         
            +
                open_screen <span class="constant">MainScreen</span>.new
         
     | 
| 
      
 88 
     | 
    
         
            +
              <span class="keyword">end</span>
         
     | 
| 
      
 89 
     | 
    
         
            +
            <span class="keyword">end</span></pre></div></div>
         
     | 
| 
      
 90 
     | 
    
         
            +
                        
         
     | 
| 
      
 91 
     | 
    
         
            +
                    </li>
         
     | 
| 
      
 92 
     | 
    
         
            +
                    
         
     | 
| 
      
 93 
     | 
    
         
            +
                    
         
     | 
| 
      
 94 
     | 
    
         
            +
                    <li id="section-5">
         
     | 
| 
      
 95 
     | 
    
         
            +
                        <div class="annotation">
         
     | 
| 
      
 96 
     | 
    
         
            +
                          
         
     | 
| 
      
 97 
     | 
    
         
            +
                          <div class="pilwrap ">
         
     | 
| 
      
 98 
     | 
    
         
            +
                            <a class="pilcrow" href="#section-5">¶</a>
         
     | 
| 
      
 99 
     | 
    
         
            +
                          </div>
         
     | 
| 
      
 100 
     | 
    
         
            +
                          <p><strong>3. Create the main screen.</strong></p>
         
     | 
| 
      
 101 
     | 
    
         
            +
            <p>You should rewrite the <code>render</code> method, which will be runned after opening screen.</p>
         
     | 
| 
      
 102 
     | 
    
         
            +
             
     | 
| 
      
 103 
     | 
    
         
            +
                        </div>
         
     | 
| 
      
 104 
     | 
    
         
            +
                        
         
     | 
| 
      
 105 
     | 
    
         
            +
                        <div class="content"><div class='highlight'><pre><span class="class"><span class="keyword">class</span> <span class="title">MainScreen</span> <span class="inheritance">< <span class="parent">Prime::BaseScreen</span></span></span>
         
     | 
| 
      
 106 
     | 
    
         
            +
              title <span class="string">'Main screen'</span>
         
     | 
| 
      
 107 
     | 
    
         
            +
             
     | 
| 
      
 108 
     | 
    
         
            +
              <span class="function"><span class="keyword">def</span> <span class="title">render</span></span>
         
     | 
| 
      
 109 
     | 
    
         
            +
                <span class="variable">@main_section</span> = <span class="constant">MyProfileSection</span>.new(<span class="symbol">model:</span> <span class="constant">User</span>.first)
         
     | 
| 
      
 110 
     | 
    
         
            +
                <span class="variable">@main_section</span>.render(<span class="symbol">to:</span> <span class="keyword">self</span>)
         
     | 
| 
      
 111 
     | 
    
         
            +
              <span class="keyword">end</span>
         
     | 
| 
      
 112 
     | 
    
         
            +
            <span class="keyword">end</span></pre></div></div>
         
     | 
| 
      
 113 
     | 
    
         
            +
                        
         
     | 
| 
      
 114 
     | 
    
         
            +
                    </li>
         
     | 
| 
      
 115 
     | 
    
         
            +
                    
         
     | 
| 
      
 116 
     | 
    
         
            +
                    
         
     | 
| 
      
 117 
     | 
    
         
            +
                    <li id="section-6">
         
     | 
| 
      
 118 
     | 
    
         
            +
                        <div class="annotation">
         
     | 
| 
      
 119 
     | 
    
         
            +
                          
         
     | 
| 
      
 120 
     | 
    
         
            +
                          <div class="pilwrap ">
         
     | 
| 
      
 121 
     | 
    
         
            +
                            <a class="pilcrow" href="#section-6">¶</a>
         
     | 
| 
      
 122 
     | 
    
         
            +
                          </div>
         
     | 
| 
      
 123 
     | 
    
         
            +
                          <p><strong>4. Create your first section.</strong></p>
         
     | 
| 
      
 124 
     | 
    
         
            +
            <p>"Section" is something like helper, which contains "Elements".</p>
         
     | 
| 
      
 125 
     | 
    
         
            +
            <p>Each element will be added to the parent screen when you run <code>section.render(to: screen)</code></p>
         
     | 
| 
      
 126 
     | 
    
         
            +
             
     | 
| 
      
 127 
     | 
    
         
            +
                        </div>
         
     | 
| 
      
 128 
     | 
    
         
            +
                        
         
     | 
| 
      
 129 
     | 
    
         
            +
                        <div class="content"><div class='highlight'><pre><span class="class"><span class="keyword">class</span> <span class="title">MyProfileSection</span> <span class="inheritance">< <span class="parent">Prime::BaseSection</span></span></span>
         
     | 
| 
      
 130 
     | 
    
         
            +
              element <span class="symbol">:title</span>, <span class="symbol">text:</span> <span class="string">"Hello World"</span>
         
     | 
| 
      
 131 
     | 
    
         
            +
              element <span class="symbol">:avatar</span>, <span class="symbol">image:</span> <span class="string">"images/avatar.png"</span>, <span class="symbol">type:</span> <span class="symbol">:image</span>
         
     | 
| 
      
 132 
     | 
    
         
            +
            <span class="keyword">end</span></pre></div></div>
         
     | 
| 
      
 133 
     | 
    
         
            +
                        
         
     | 
| 
      
 134 
     | 
    
         
            +
                    </li>
         
     | 
| 
      
 135 
     | 
    
         
            +
                    
         
     | 
| 
      
 136 
     | 
    
         
            +
                    
         
     | 
| 
      
 137 
     | 
    
         
            +
                    <li id="section-7">
         
     | 
| 
      
 138 
     | 
    
         
            +
                        <div class="annotation">
         
     | 
| 
      
 139 
     | 
    
         
            +
                          
         
     | 
| 
      
 140 
     | 
    
         
            +
                          <div class="pilwrap ">
         
     | 
| 
      
 141 
     | 
    
         
            +
                            <a class="pilcrow" href="#section-7">¶</a>
         
     | 
| 
      
 142 
     | 
    
         
            +
                          </div>
         
     | 
| 
      
 143 
     | 
    
         
            +
                          <p><strong>5. Create your first stylesheet file.</strong></p>
         
     | 
| 
      
 144 
     | 
    
         
            +
            <p>Styles will be applied to each element in section. 
         
     | 
| 
      
 145 
     | 
    
         
            +
            The simplest rule by default is: <code>:section-name_:element-name</code>.</p>
         
     | 
| 
      
 146 
     | 
    
         
            +
            <p>E.g. if you have 'MyProfileSection' (the name for section by default will be - <code>my_profile</code>) 
         
     | 
| 
      
 147 
     | 
    
         
            +
            and 'title' element, then you should use <code>my_profile_title</code> style name.</p>
         
     | 
| 
      
 148 
     | 
    
         
            +
             
     | 
| 
      
 149 
     | 
    
         
            +
                        </div>
         
     | 
| 
      
 150 
     | 
    
         
            +
                        
         
     | 
| 
      
 151 
     | 
    
         
            +
                        <div class="content"><div class='highlight'><pre><span class="constant">Prime::Styles</span>.define <span class="keyword">do</span>
         
     | 
| 
      
 152 
     | 
    
         
            +
              style <span class="symbol">:my_profile_title</span>, <span class="symbol">width:</span> <span class="number">300</span>, <span class="symbol">height:</span> <span class="number">20</span>
         
     | 
| 
      
 153 
     | 
    
         
            +
            <span class="keyword">end</span></pre></div></div>
         
     | 
| 
      
 154 
     | 
    
         
            +
                        
         
     | 
| 
      
 155 
     | 
    
         
            +
                    </li>
         
     | 
| 
      
 156 
     | 
    
         
            +
                    
         
     | 
| 
      
 157 
     | 
    
         
            +
                    
         
     | 
| 
      
 158 
     | 
    
         
            +
                    <li id="section-8">
         
     | 
| 
      
 159 
     | 
    
         
            +
                        <div class="annotation">
         
     | 
| 
      
 160 
     | 
    
         
            +
                          
         
     | 
| 
      
 161 
     | 
    
         
            +
                          <div class="pilwrap ">
         
     | 
| 
      
 162 
     | 
    
         
            +
                            <a class="pilcrow" href="#section-8">¶</a>
         
     | 
| 
      
 163 
     | 
    
         
            +
                          </div>
         
     | 
| 
      
 164 
     | 
    
         
            +
                          <p>Also, you can pass namespace to <code>define</code> method.</p>
         
     | 
| 
      
 165 
     | 
    
         
            +
             
     | 
| 
      
 166 
     | 
    
         
            +
                        </div>
         
     | 
| 
      
 167 
     | 
    
         
            +
                        
         
     | 
| 
      
 168 
     | 
    
         
            +
                        <div class="content"><div class='highlight'><pre><span class="constant">Prime::Styles</span>.define <span class="symbol">:my_profile</span> <span class="keyword">do</span>
         
     | 
| 
      
 169 
     | 
    
         
            +
              style <span class="symbol">:title</span>, <span class="symbol">width:</span> <span class="number">300</span>, <span class="symbol">height:</span> <span class="number">20</span>
         
     | 
| 
      
 170 
     | 
    
         
            +
            <span class="keyword">end</span></pre></div></div>
         
     | 
| 
      
 171 
     | 
    
         
            +
                        
         
     | 
| 
      
 172 
     | 
    
         
            +
                    </li>
         
     | 
| 
      
 173 
     | 
    
         
            +
                    
         
     | 
| 
      
 174 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 175 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 176 
     | 
    
         
            +
            </body>
         
     | 
| 
      
 177 
     | 
    
         
            +
            </html>
         
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         @@ -0,0 +1,375 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            /*! normalize.css v2.0.1 | MIT License | git.io/normalize */
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            /* ==========================================================================
         
     | 
| 
      
 4 
     | 
    
         
            +
               HTML5 display definitions
         
     | 
| 
      
 5 
     | 
    
         
            +
               ========================================================================== */
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            /*
         
     | 
| 
      
 8 
     | 
    
         
            +
             * Corrects `block` display not defined in IE 8/9.
         
     | 
| 
      
 9 
     | 
    
         
            +
             */
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            article,
         
     | 
| 
      
 12 
     | 
    
         
            +
            aside,
         
     | 
| 
      
 13 
     | 
    
         
            +
            details,
         
     | 
| 
      
 14 
     | 
    
         
            +
            figcaption,
         
     | 
| 
      
 15 
     | 
    
         
            +
            figure,
         
     | 
| 
      
 16 
     | 
    
         
            +
            footer,
         
     | 
| 
      
 17 
     | 
    
         
            +
            header,
         
     | 
| 
      
 18 
     | 
    
         
            +
            hgroup,
         
     | 
| 
      
 19 
     | 
    
         
            +
            nav,
         
     | 
| 
      
 20 
     | 
    
         
            +
            section,
         
     | 
| 
      
 21 
     | 
    
         
            +
            summary {
         
     | 
| 
      
 22 
     | 
    
         
            +
                display: block;
         
     | 
| 
      
 23 
     | 
    
         
            +
            }
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            /*
         
     | 
| 
      
 26 
     | 
    
         
            +
             * Corrects `inline-block` display not defined in IE 8/9.
         
     | 
| 
      
 27 
     | 
    
         
            +
             */
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            audio,
         
     | 
| 
      
 30 
     | 
    
         
            +
            canvas,
         
     | 
| 
      
 31 
     | 
    
         
            +
            video {
         
     | 
| 
      
 32 
     | 
    
         
            +
                display: inline-block;
         
     | 
| 
      
 33 
     | 
    
         
            +
            }
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
            /*
         
     | 
| 
      
 36 
     | 
    
         
            +
             * Prevents modern browsers from displaying `audio` without controls.
         
     | 
| 
      
 37 
     | 
    
         
            +
             * Remove excess height in iOS 5 devices.
         
     | 
| 
      
 38 
     | 
    
         
            +
             */
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
            audio:not([controls]) {
         
     | 
| 
      
 41 
     | 
    
         
            +
                display: none;
         
     | 
| 
      
 42 
     | 
    
         
            +
                height: 0;
         
     | 
| 
      
 43 
     | 
    
         
            +
            }
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
            /*
         
     | 
| 
      
 46 
     | 
    
         
            +
             * Addresses styling for `hidden` attribute not present in IE 8/9.
         
     | 
| 
      
 47 
     | 
    
         
            +
             */
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
            [hidden] {
         
     | 
| 
      
 50 
     | 
    
         
            +
                display: none;
         
     | 
| 
      
 51 
     | 
    
         
            +
            }
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
            /* ==========================================================================
         
     | 
| 
      
 54 
     | 
    
         
            +
               Base
         
     | 
| 
      
 55 
     | 
    
         
            +
               ========================================================================== */
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
            /*
         
     | 
| 
      
 58 
     | 
    
         
            +
             * 1. Sets default font family to sans-serif.
         
     | 
| 
      
 59 
     | 
    
         
            +
             * 2. Prevents iOS text size adjust after orientation change, without disabling
         
     | 
| 
      
 60 
     | 
    
         
            +
             *    user zoom.
         
     | 
| 
      
 61 
     | 
    
         
            +
             */
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
            html {
         
     | 
| 
      
 64 
     | 
    
         
            +
                font-family: sans-serif; /* 1 */
         
     | 
| 
      
 65 
     | 
    
         
            +
                -webkit-text-size-adjust: 100%; /* 2 */
         
     | 
| 
      
 66 
     | 
    
         
            +
                -ms-text-size-adjust: 100%; /* 2 */
         
     | 
| 
      
 67 
     | 
    
         
            +
            }
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
            /*
         
     | 
| 
      
 70 
     | 
    
         
            +
             * Removes default margin.
         
     | 
| 
      
 71 
     | 
    
         
            +
             */
         
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
      
 73 
     | 
    
         
            +
            body {
         
     | 
| 
      
 74 
     | 
    
         
            +
                margin: 0;
         
     | 
| 
      
 75 
     | 
    
         
            +
            }
         
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
      
 77 
     | 
    
         
            +
            /* ==========================================================================
         
     | 
| 
      
 78 
     | 
    
         
            +
               Links
         
     | 
| 
      
 79 
     | 
    
         
            +
               ========================================================================== */
         
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
            /*
         
     | 
| 
      
 82 
     | 
    
         
            +
             * Addresses `outline` inconsistency between Chrome and other browsers.
         
     | 
| 
      
 83 
     | 
    
         
            +
             */
         
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
            a:focus {
         
     | 
| 
      
 86 
     | 
    
         
            +
                outline: thin dotted;
         
     | 
| 
      
 87 
     | 
    
         
            +
            }
         
     | 
| 
      
 88 
     | 
    
         
            +
             
     | 
| 
      
 89 
     | 
    
         
            +
            /*
         
     | 
| 
      
 90 
     | 
    
         
            +
             * Improves readability when focused and also mouse hovered in all browsers.
         
     | 
| 
      
 91 
     | 
    
         
            +
             */
         
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
      
 93 
     | 
    
         
            +
            a:active,
         
     | 
| 
      
 94 
     | 
    
         
            +
            a:hover {
         
     | 
| 
      
 95 
     | 
    
         
            +
                outline: 0;
         
     | 
| 
      
 96 
     | 
    
         
            +
            }
         
     | 
| 
      
 97 
     | 
    
         
            +
             
     | 
| 
      
 98 
     | 
    
         
            +
            /* ==========================================================================
         
     | 
| 
      
 99 
     | 
    
         
            +
               Typography
         
     | 
| 
      
 100 
     | 
    
         
            +
               ========================================================================== */
         
     | 
| 
      
 101 
     | 
    
         
            +
             
     | 
| 
      
 102 
     | 
    
         
            +
            /*
         
     | 
| 
      
 103 
     | 
    
         
            +
             * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
         
     | 
| 
      
 104 
     | 
    
         
            +
             * Safari 5, and Chrome.
         
     | 
| 
      
 105 
     | 
    
         
            +
             */
         
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
            h1 {
         
     | 
| 
      
 108 
     | 
    
         
            +
                font-size: 2em;
         
     | 
| 
      
 109 
     | 
    
         
            +
            }
         
     | 
| 
      
 110 
     | 
    
         
            +
             
     | 
| 
      
 111 
     | 
    
         
            +
            /*
         
     | 
| 
      
 112 
     | 
    
         
            +
             * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
         
     | 
| 
      
 113 
     | 
    
         
            +
             */
         
     | 
| 
      
 114 
     | 
    
         
            +
             
     | 
| 
      
 115 
     | 
    
         
            +
            abbr[title] {
         
     | 
| 
      
 116 
     | 
    
         
            +
                border-bottom: 1px dotted;
         
     | 
| 
      
 117 
     | 
    
         
            +
            }
         
     | 
| 
      
 118 
     | 
    
         
            +
             
     | 
| 
      
 119 
     | 
    
         
            +
            /*
         
     | 
| 
      
 120 
     | 
    
         
            +
             * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
         
     | 
| 
      
 121 
     | 
    
         
            +
             */
         
     | 
| 
      
 122 
     | 
    
         
            +
             
     | 
| 
      
 123 
     | 
    
         
            +
            b,
         
     | 
| 
      
 124 
     | 
    
         
            +
            strong {
         
     | 
| 
      
 125 
     | 
    
         
            +
                font-weight: bold;
         
     | 
| 
      
 126 
     | 
    
         
            +
            }
         
     | 
| 
      
 127 
     | 
    
         
            +
             
     | 
| 
      
 128 
     | 
    
         
            +
            /*
         
     | 
| 
      
 129 
     | 
    
         
            +
             * Addresses styling not present in Safari 5 and Chrome.
         
     | 
| 
      
 130 
     | 
    
         
            +
             */
         
     | 
| 
      
 131 
     | 
    
         
            +
             
     | 
| 
      
 132 
     | 
    
         
            +
            dfn {
         
     | 
| 
      
 133 
     | 
    
         
            +
                font-style: italic;
         
     | 
| 
      
 134 
     | 
    
         
            +
            }
         
     | 
| 
      
 135 
     | 
    
         
            +
             
     | 
| 
      
 136 
     | 
    
         
            +
            /*
         
     | 
| 
      
 137 
     | 
    
         
            +
             * Addresses styling not present in IE 8/9.
         
     | 
| 
      
 138 
     | 
    
         
            +
             */
         
     | 
| 
      
 139 
     | 
    
         
            +
             
     | 
| 
      
 140 
     | 
    
         
            +
            mark {
         
     | 
| 
      
 141 
     | 
    
         
            +
                background: #ff0;
         
     | 
| 
      
 142 
     | 
    
         
            +
                color: #000;
         
     | 
| 
      
 143 
     | 
    
         
            +
            }
         
     | 
| 
      
 144 
     | 
    
         
            +
             
     | 
| 
      
 145 
     | 
    
         
            +
             
     | 
| 
      
 146 
     | 
    
         
            +
            /*
         
     | 
| 
      
 147 
     | 
    
         
            +
             * Corrects font family set oddly in Safari 5 and Chrome.
         
     | 
| 
      
 148 
     | 
    
         
            +
             */
         
     | 
| 
      
 149 
     | 
    
         
            +
             
     | 
| 
      
 150 
     | 
    
         
            +
            code,
         
     | 
| 
      
 151 
     | 
    
         
            +
            kbd,
         
     | 
| 
      
 152 
     | 
    
         
            +
            pre,
         
     | 
| 
      
 153 
     | 
    
         
            +
            samp {
         
     | 
| 
      
 154 
     | 
    
         
            +
                font-family: monospace, serif;
         
     | 
| 
      
 155 
     | 
    
         
            +
                font-size: 1em;
         
     | 
| 
      
 156 
     | 
    
         
            +
            }
         
     | 
| 
      
 157 
     | 
    
         
            +
             
     | 
| 
      
 158 
     | 
    
         
            +
            /*
         
     | 
| 
      
 159 
     | 
    
         
            +
             * Improves readability of pre-formatted text in all browsers.
         
     | 
| 
      
 160 
     | 
    
         
            +
             */
         
     | 
| 
      
 161 
     | 
    
         
            +
             
     | 
| 
      
 162 
     | 
    
         
            +
            pre {
         
     | 
| 
      
 163 
     | 
    
         
            +
                white-space: pre;
         
     | 
| 
      
 164 
     | 
    
         
            +
                white-space: pre-wrap;
         
     | 
| 
      
 165 
     | 
    
         
            +
                word-wrap: break-word;
         
     | 
| 
      
 166 
     | 
    
         
            +
            }
         
     | 
| 
      
 167 
     | 
    
         
            +
             
     | 
| 
      
 168 
     | 
    
         
            +
            /*
         
     | 
| 
      
 169 
     | 
    
         
            +
             * Sets consistent quote types.
         
     | 
| 
      
 170 
     | 
    
         
            +
             */
         
     | 
| 
      
 171 
     | 
    
         
            +
             
     | 
| 
      
 172 
     | 
    
         
            +
            q {
         
     | 
| 
      
 173 
     | 
    
         
            +
                quotes: "\201C" "\201D" "\2018" "\2019";
         
     | 
| 
      
 174 
     | 
    
         
            +
            }
         
     | 
| 
      
 175 
     | 
    
         
            +
             
     | 
| 
      
 176 
     | 
    
         
            +
            /*
         
     | 
| 
      
 177 
     | 
    
         
            +
             * Addresses inconsistent and variable font size in all browsers.
         
     | 
| 
      
 178 
     | 
    
         
            +
             */
         
     | 
| 
      
 179 
     | 
    
         
            +
             
     | 
| 
      
 180 
     | 
    
         
            +
            small {
         
     | 
| 
      
 181 
     | 
    
         
            +
                font-size: 80%;
         
     | 
| 
      
 182 
     | 
    
         
            +
            }
         
     | 
| 
      
 183 
     | 
    
         
            +
             
     | 
| 
      
 184 
     | 
    
         
            +
            /*
         
     | 
| 
      
 185 
     | 
    
         
            +
             * Prevents `sub` and `sup` affecting `line-height` in all browsers.
         
     | 
| 
      
 186 
     | 
    
         
            +
             */
         
     | 
| 
      
 187 
     | 
    
         
            +
             
     | 
| 
      
 188 
     | 
    
         
            +
            sub,
         
     | 
| 
      
 189 
     | 
    
         
            +
            sup {
         
     | 
| 
      
 190 
     | 
    
         
            +
                font-size: 75%;
         
     | 
| 
      
 191 
     | 
    
         
            +
                line-height: 0;
         
     | 
| 
      
 192 
     | 
    
         
            +
                position: relative;
         
     | 
| 
      
 193 
     | 
    
         
            +
                vertical-align: baseline;
         
     | 
| 
      
 194 
     | 
    
         
            +
            }
         
     | 
| 
      
 195 
     | 
    
         
            +
             
     | 
| 
      
 196 
     | 
    
         
            +
            sup {
         
     | 
| 
      
 197 
     | 
    
         
            +
                top: -0.5em;
         
     | 
| 
      
 198 
     | 
    
         
            +
            }
         
     | 
| 
      
 199 
     | 
    
         
            +
             
     | 
| 
      
 200 
     | 
    
         
            +
            sub {
         
     | 
| 
      
 201 
     | 
    
         
            +
                bottom: -0.25em;
         
     | 
| 
      
 202 
     | 
    
         
            +
            }
         
     | 
| 
      
 203 
     | 
    
         
            +
             
     | 
| 
      
 204 
     | 
    
         
            +
            /* ==========================================================================
         
     | 
| 
      
 205 
     | 
    
         
            +
               Embedded content
         
     | 
| 
      
 206 
     | 
    
         
            +
               ========================================================================== */
         
     | 
| 
      
 207 
     | 
    
         
            +
             
     | 
| 
      
 208 
     | 
    
         
            +
            /*
         
     | 
| 
      
 209 
     | 
    
         
            +
             * Removes border when inside `a` element in IE 8/9.
         
     | 
| 
      
 210 
     | 
    
         
            +
             */
         
     | 
| 
      
 211 
     | 
    
         
            +
             
     | 
| 
      
 212 
     | 
    
         
            +
            img {
         
     | 
| 
      
 213 
     | 
    
         
            +
                border: 0;
         
     | 
| 
      
 214 
     | 
    
         
            +
            }
         
     | 
| 
      
 215 
     | 
    
         
            +
             
     | 
| 
      
 216 
     | 
    
         
            +
            /*
         
     | 
| 
      
 217 
     | 
    
         
            +
             * Corrects overflow displayed oddly in IE 9.
         
     | 
| 
      
 218 
     | 
    
         
            +
             */
         
     | 
| 
      
 219 
     | 
    
         
            +
             
     | 
| 
      
 220 
     | 
    
         
            +
            svg:not(:root) {
         
     | 
| 
      
 221 
     | 
    
         
            +
                overflow: hidden;
         
     | 
| 
      
 222 
     | 
    
         
            +
            }
         
     | 
| 
      
 223 
     | 
    
         
            +
             
     | 
| 
      
 224 
     | 
    
         
            +
            /* ==========================================================================
         
     | 
| 
      
 225 
     | 
    
         
            +
               Figures
         
     | 
| 
      
 226 
     | 
    
         
            +
               ========================================================================== */
         
     | 
| 
      
 227 
     | 
    
         
            +
             
     | 
| 
      
 228 
     | 
    
         
            +
            /*
         
     | 
| 
      
 229 
     | 
    
         
            +
             * Addresses margin not present in IE 8/9 and Safari 5.
         
     | 
| 
      
 230 
     | 
    
         
            +
             */
         
     | 
| 
      
 231 
     | 
    
         
            +
             
     | 
| 
      
 232 
     | 
    
         
            +
            figure {
         
     | 
| 
      
 233 
     | 
    
         
            +
                margin: 0;
         
     | 
| 
      
 234 
     | 
    
         
            +
            }
         
     | 
| 
      
 235 
     | 
    
         
            +
             
     | 
| 
      
 236 
     | 
    
         
            +
            /* ==========================================================================
         
     | 
| 
      
 237 
     | 
    
         
            +
               Forms
         
     | 
| 
      
 238 
     | 
    
         
            +
               ========================================================================== */
         
     | 
| 
      
 239 
     | 
    
         
            +
             
     | 
| 
      
 240 
     | 
    
         
            +
            /*
         
     | 
| 
      
 241 
     | 
    
         
            +
             * Define consistent border, margin, and padding.
         
     | 
| 
      
 242 
     | 
    
         
            +
             */
         
     | 
| 
      
 243 
     | 
    
         
            +
             
     | 
| 
      
 244 
     | 
    
         
            +
            fieldset {
         
     | 
| 
      
 245 
     | 
    
         
            +
                border: 1px solid #c0c0c0;
         
     | 
| 
      
 246 
     | 
    
         
            +
                margin: 0 2px;
         
     | 
| 
      
 247 
     | 
    
         
            +
                padding: 0.35em 0.625em 0.75em;
         
     | 
| 
      
 248 
     | 
    
         
            +
            }
         
     | 
| 
      
 249 
     | 
    
         
            +
             
     | 
| 
      
 250 
     | 
    
         
            +
            /*
         
     | 
| 
      
 251 
     | 
    
         
            +
             * 1. Corrects color not being inherited in IE 8/9.
         
     | 
| 
      
 252 
     | 
    
         
            +
             * 2. Remove padding so people aren't caught out if they zero out fieldsets.
         
     | 
| 
      
 253 
     | 
    
         
            +
             */
         
     | 
| 
      
 254 
     | 
    
         
            +
             
     | 
| 
      
 255 
     | 
    
         
            +
            legend {
         
     | 
| 
      
 256 
     | 
    
         
            +
                border: 0; /* 1 */
         
     | 
| 
      
 257 
     | 
    
         
            +
                padding: 0; /* 2 */
         
     | 
| 
      
 258 
     | 
    
         
            +
            }
         
     | 
| 
      
 259 
     | 
    
         
            +
             
     | 
| 
      
 260 
     | 
    
         
            +
            /*
         
     | 
| 
      
 261 
     | 
    
         
            +
             * 1. Corrects font family not being inherited in all browsers.
         
     | 
| 
      
 262 
     | 
    
         
            +
             * 2. Corrects font size not being inherited in all browsers.
         
     | 
| 
      
 263 
     | 
    
         
            +
             * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
         
     | 
| 
      
 264 
     | 
    
         
            +
             */
         
     | 
| 
      
 265 
     | 
    
         
            +
             
     | 
| 
      
 266 
     | 
    
         
            +
            button,
         
     | 
| 
      
 267 
     | 
    
         
            +
            input,
         
     | 
| 
      
 268 
     | 
    
         
            +
            select,
         
     | 
| 
      
 269 
     | 
    
         
            +
            textarea {
         
     | 
| 
      
 270 
     | 
    
         
            +
                font-family: inherit; /* 1 */
         
     | 
| 
      
 271 
     | 
    
         
            +
                font-size: 100%; /* 2 */
         
     | 
| 
      
 272 
     | 
    
         
            +
                margin: 0; /* 3 */
         
     | 
| 
      
 273 
     | 
    
         
            +
            }
         
     | 
| 
      
 274 
     | 
    
         
            +
             
     | 
| 
      
 275 
     | 
    
         
            +
            /*
         
     | 
| 
      
 276 
     | 
    
         
            +
             * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
         
     | 
| 
      
 277 
     | 
    
         
            +
             * the UA stylesheet.
         
     | 
| 
      
 278 
     | 
    
         
            +
             */
         
     | 
| 
      
 279 
     | 
    
         
            +
             
     | 
| 
      
 280 
     | 
    
         
            +
            button,
         
     | 
| 
      
 281 
     | 
    
         
            +
            input {
         
     | 
| 
      
 282 
     | 
    
         
            +
                line-height: normal;
         
     | 
| 
      
 283 
     | 
    
         
            +
            }
         
     | 
| 
      
 284 
     | 
    
         
            +
             
     | 
| 
      
 285 
     | 
    
         
            +
            /*
         
     | 
| 
      
 286 
     | 
    
         
            +
             * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
         
     | 
| 
      
 287 
     | 
    
         
            +
             *    and `video` controls.
         
     | 
| 
      
 288 
     | 
    
         
            +
             * 2. Corrects inability to style clickable `input` types in iOS.
         
     | 
| 
      
 289 
     | 
    
         
            +
             * 3. Improves usability and consistency of cursor style between image-type
         
     | 
| 
      
 290 
     | 
    
         
            +
             *    `input` and others.
         
     | 
| 
      
 291 
     | 
    
         
            +
             */
         
     | 
| 
      
 292 
     | 
    
         
            +
             
     | 
| 
      
 293 
     | 
    
         
            +
            button,
         
     | 
| 
      
 294 
     | 
    
         
            +
            html input[type="button"], /* 1 */
         
     | 
| 
      
 295 
     | 
    
         
            +
            input[type="reset"],
         
     | 
| 
      
 296 
     | 
    
         
            +
            input[type="submit"] {
         
     | 
| 
      
 297 
     | 
    
         
            +
                -webkit-appearance: button; /* 2 */
         
     | 
| 
      
 298 
     | 
    
         
            +
                cursor: pointer; /* 3 */
         
     | 
| 
      
 299 
     | 
    
         
            +
            }
         
     | 
| 
      
 300 
     | 
    
         
            +
             
     | 
| 
      
 301 
     | 
    
         
            +
            /*
         
     | 
| 
      
 302 
     | 
    
         
            +
             * Re-set default cursor for disabled elements.
         
     | 
| 
      
 303 
     | 
    
         
            +
             */
         
     | 
| 
      
 304 
     | 
    
         
            +
             
     | 
| 
      
 305 
     | 
    
         
            +
            button[disabled],
         
     | 
| 
      
 306 
     | 
    
         
            +
            input[disabled] {
         
     | 
| 
      
 307 
     | 
    
         
            +
                cursor: default;
         
     | 
| 
      
 308 
     | 
    
         
            +
            }
         
     | 
| 
      
 309 
     | 
    
         
            +
             
     | 
| 
      
 310 
     | 
    
         
            +
            /*
         
     | 
| 
      
 311 
     | 
    
         
            +
             * 1. Addresses box sizing set to `content-box` in IE 8/9.
         
     | 
| 
      
 312 
     | 
    
         
            +
             * 2. Removes excess padding in IE 8/9.
         
     | 
| 
      
 313 
     | 
    
         
            +
             */
         
     | 
| 
      
 314 
     | 
    
         
            +
             
     | 
| 
      
 315 
     | 
    
         
            +
            input[type="checkbox"],
         
     | 
| 
      
 316 
     | 
    
         
            +
            input[type="radio"] {
         
     | 
| 
      
 317 
     | 
    
         
            +
                box-sizing: border-box; /* 1 */
         
     | 
| 
      
 318 
     | 
    
         
            +
                padding: 0; /* 2 */
         
     | 
| 
      
 319 
     | 
    
         
            +
            }
         
     | 
| 
      
 320 
     | 
    
         
            +
             
     | 
| 
      
 321 
     | 
    
         
            +
            /*
         
     | 
| 
      
 322 
     | 
    
         
            +
             * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
         
     | 
| 
      
 323 
     | 
    
         
            +
             * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
         
     | 
| 
      
 324 
     | 
    
         
            +
             *    (include `-moz` to future-proof).
         
     | 
| 
      
 325 
     | 
    
         
            +
             */
         
     | 
| 
      
 326 
     | 
    
         
            +
             
     | 
| 
      
 327 
     | 
    
         
            +
            input[type="search"] {
         
     | 
| 
      
 328 
     | 
    
         
            +
                -webkit-appearance: textfield; /* 1 */
         
     | 
| 
      
 329 
     | 
    
         
            +
                -moz-box-sizing: content-box;
         
     | 
| 
      
 330 
     | 
    
         
            +
                -webkit-box-sizing: content-box; /* 2 */
         
     | 
| 
      
 331 
     | 
    
         
            +
                box-sizing: content-box;
         
     | 
| 
      
 332 
     | 
    
         
            +
            }
         
     | 
| 
      
 333 
     | 
    
         
            +
             
     | 
| 
      
 334 
     | 
    
         
            +
            /*
         
     | 
| 
      
 335 
     | 
    
         
            +
             * Removes inner padding and search cancel button in Safari 5 and Chrome
         
     | 
| 
      
 336 
     | 
    
         
            +
             * on OS X.
         
     | 
| 
      
 337 
     | 
    
         
            +
             */
         
     | 
| 
      
 338 
     | 
    
         
            +
             
     | 
| 
      
 339 
     | 
    
         
            +
            input[type="search"]::-webkit-search-cancel-button,
         
     | 
| 
      
 340 
     | 
    
         
            +
            input[type="search"]::-webkit-search-decoration {
         
     | 
| 
      
 341 
     | 
    
         
            +
                -webkit-appearance: none;
         
     | 
| 
      
 342 
     | 
    
         
            +
            }
         
     | 
| 
      
 343 
     | 
    
         
            +
             
     | 
| 
      
 344 
     | 
    
         
            +
            /*
         
     | 
| 
      
 345 
     | 
    
         
            +
             * Removes inner padding and border in Firefox 4+.
         
     | 
| 
      
 346 
     | 
    
         
            +
             */
         
     | 
| 
      
 347 
     | 
    
         
            +
             
     | 
| 
      
 348 
     | 
    
         
            +
            button::-moz-focus-inner,
         
     | 
| 
      
 349 
     | 
    
         
            +
            input::-moz-focus-inner {
         
     | 
| 
      
 350 
     | 
    
         
            +
                border: 0;
         
     | 
| 
      
 351 
     | 
    
         
            +
                padding: 0;
         
     | 
| 
      
 352 
     | 
    
         
            +
            }
         
     | 
| 
      
 353 
     | 
    
         
            +
             
     | 
| 
      
 354 
     | 
    
         
            +
            /*
         
     | 
| 
      
 355 
     | 
    
         
            +
             * 1. Removes default vertical scrollbar in IE 8/9.
         
     | 
| 
      
 356 
     | 
    
         
            +
             * 2. Improves readability and alignment in all browsers.
         
     | 
| 
      
 357 
     | 
    
         
            +
             */
         
     | 
| 
      
 358 
     | 
    
         
            +
             
     | 
| 
      
 359 
     | 
    
         
            +
            textarea {
         
     | 
| 
      
 360 
     | 
    
         
            +
                overflow: auto; /* 1 */
         
     | 
| 
      
 361 
     | 
    
         
            +
                vertical-align: top; /* 2 */
         
     | 
| 
      
 362 
     | 
    
         
            +
            }
         
     | 
| 
      
 363 
     | 
    
         
            +
             
     | 
| 
      
 364 
     | 
    
         
            +
            /* ==========================================================================
         
     | 
| 
      
 365 
     | 
    
         
            +
               Tables
         
     | 
| 
      
 366 
     | 
    
         
            +
               ========================================================================== */
         
     | 
| 
      
 367 
     | 
    
         
            +
             
     | 
| 
      
 368 
     | 
    
         
            +
            /*
         
     | 
| 
      
 369 
     | 
    
         
            +
             * Remove most spacing between table cells.
         
     | 
| 
      
 370 
     | 
    
         
            +
             */
         
     | 
| 
      
 371 
     | 
    
         
            +
             
     | 
| 
      
 372 
     | 
    
         
            +
            table {
         
     | 
| 
      
 373 
     | 
    
         
            +
                border-collapse: collapse;
         
     | 
| 
      
 374 
     | 
    
         
            +
                border-spacing: 0;
         
     | 
| 
      
 375 
     | 
    
         
            +
            }
         
     |