liquid_feedback_frontend
view style/mdl/resets/_resets.scss @ 1641:ab837b075cf7
Fixed mldap_get_named_number_arg to not leave any element on the Lua stack (should not have had any effect anyway but is now consistent to documentation)
| author | jbe | 
|---|---|
| date | Tue Feb 09 17:44:47 2021 +0100 (2021-02-09) | 
| parents | 32cc544d5a5b | 
| children | 
 line source
     1 /**
     2  * Copyright 2015 Google Inc. All Rights Reserved.
     3  *
     4  * Licensed under the Apache License, Version 2.0 (the "License");
     5  * you may not use this file except in compliance with the License.
     6  * You may obtain a copy of the License at
     7  *
     8  *      http://www.apache.org/licenses/LICENSE-2.0
     9  *
    10  * Unless required by applicable law or agreed to in writing, software
    11  * distributed under the License is distributed on an "AS IS" BASIS,
    12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  * See the License for the specific language governing permissions and
    14  * limitations under the License.
    15  */
    17 @import "h5bp";
    18 @import "mobile";
    20 /*
    21  * Make html take up the entire screen
    22  * Then set touch-action to avoid touch delay on mobile IE
    23  */
    24 html {
    25   width: 100%;
    26   height: 100%;
    27   -ms-touch-action: manipulation;
    28   touch-action: manipulation;
    29 }
    31 /*
    32 * Make body take up the entire screen
    33 * Remove body margin so layout containers don't cause extra overflow.
    34 */
    35 body {
    36   width: 100%;
    37   min-height: 100%;
    38   margin: 0;
    39 }
    41 /*
    42  * Main display reset for IE support.
    43  * Source: http://weblog.west-wind.com/posts/2015/Jan/12/main-HTML5-Tag-not-working-in-Internet-Explorer-91011
    44  */
    45 main {
    46   display: block;
    47 }
    49 /*
    50 * Apply no display to elements with the hidden attribute.
    51 * IE 9 and 10 support.
    52 */
    53 *[hidden] {
    54   display: none !important;
    55 }
