From 86305ae03ed19a85081066f1fabeb16c6712ccb5 Mon Sep 17 00:00:00 2001 From: Maksim Tananykin Date: Fri, 14 Oct 2022 15:25:12 +0300 Subject: [PATCH] init --- css/style.css | 85 +++++++++++++++++++++++++++++++++++++++++++++++++++ index.html | 13 ++++++++ script.js | 0 style.scss | 75 +++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 173 insertions(+) create mode 100644 css/style.css create mode 100644 index.html create mode 100644 script.js create mode 100644 style.scss diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..07fde51 --- /dev/null +++ b/css/style.css @@ -0,0 +1,85 @@ +* { + padding: 0; + margin: 0; + border: 0; +} + +*, +*:before, +*:after { + box-sizing: border-box; +} + +nav, +footer, +header, +aside { + display: block; +} + +html, +body { + height: 100%; + width: 100%; + font-size: 100%; + line-height: 1; + font-size: 14px; + -ms-text-size-adjust: 100%; + -moz-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; +} + +input, +button, +textarea { + font-family: inherit; +} + +button { + background: transparent; + border: 0; +} + +input::-ms-clear { + display: none; +} + +button { + cursor: pointer; +} + +button::-moz-focus-inner { + padding: 0; + border: 0; +} + +a, +a:visited { + text-decoration: none; +} + +a:hover { + text-decoration: none; +} + +ul li { + list-style: none; +} + +img { + vertical-align: top; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: inherit; + font-weight: 400; +} + +body { + background-color: red; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..6053cd3 --- /dev/null +++ b/index.html @@ -0,0 +1,13 @@ + + + + + + + + Courses + + + kjfdnfk + + diff --git a/script.js b/script.js new file mode 100644 index 0000000..e69de29 diff --git a/style.scss b/style.scss new file mode 100644 index 0000000..862d068 --- /dev/null +++ b/style.scss @@ -0,0 +1,75 @@ +* { + padding: 0; + margin: 0; + border: 0; +} +*, +*:before, +*:after { + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; +} +nav, +footer, +header, +aside { + display: block; +} +html, +body { + height: 100%; + width: 100%; + font-size: 100%; + line-height: 1; + font-size: 14px; + -ms-text-size-adjust: 100%; + -moz-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; +} +input, +button, +textarea { + font-family: inherit; +} +button { + background: transparent; + border: 0; +} +input::-ms-clear { + display: none; +} +button { + cursor: pointer; +} +button::-moz-focus-inner { + padding: 0; + border: 0; +} +a, +a:visited { + text-decoration: none; +} +a:hover { + text-decoration: none; +} +ul li { + list-style: none; +} +img { + vertical-align: top; +} +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: inherit; + font-weight: 400; +} + +body{ + background-color: red; +} +