UNPKG

733 Btext/lessView Raw
1/*!
2 * # Semantic UI - Reset
3 * http://github.com/semantic-org/semantic-ui/
4 *
5 *
6 * Released under the MIT license
7 * http://opensource.org/licenses/MIT
8 *
9 */
10
11/*******************************
12 Theme
13*******************************/
14
15@type : 'global';
16@element : 'reset';
17
18@import (multiple) '../../theme.config';
19
20/*******************************
21 Reset
22*******************************/
23
24/* Border-Box */
25*,
26*:before,
27*:after {
28 box-sizing: inherit;
29}
30html {
31 box-sizing: border-box;
32}
33
34/* iPad Input Shadows */
35input[type="text"], input[type="email"], input[type="search"], input[type="password"] {
36 -webkit-appearance: none;
37 -moz-appearance: none; /* mobile firefox too! */
38}
39
40.loadUIOverrides();