diff --git a/autor-resourse/my-normaliz-style-mins.scss b/autor-resourse/my-normaliz-style-mins.scss new file mode 100644 index 0000000..5b171be --- /dev/null +++ b/autor-resourse/my-normaliz-style-mins.scss @@ -0,0 +1,81 @@ +/* ### MIU: Normalize styles ### */ +* { + padding: 0; + margin: 0; + border: 0; + + /* transition: all 0.3s; */ +} + +*, +*:before, +*:after { + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; +} + +:focus, +:active { + outline: none; +} + +a:focus, +a:active { + outline: none; +} + +nav, +main, +footer, +header, +aside, +section { + display: block; +} + +html { + scroll-behavior: smooth; +} + +html, +body { + height: 100%; + width: 100%; + + font-size: 14px; + font-weight: 400; + line-height: 1; +} + +input, +button, +textarea { + font-family: inherit; +} + +a, +button { + cursor: pointer; +} + +a, +a:hover, +a:visited { + text-decoration: none; +} + +ul li { + list-style: none; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: inherit; + font-weight: 400; +} +/*--------------------*/