From 095a440ddec647d40b584afd61ad19166ca9b8cc Mon Sep 17 00:00:00 2001 From: momin-riyadh Date: Tue, 27 Oct 2020 12:55:31 +0600 Subject: [PATCH] ns --- .../src/index.css | 89 +++++++++++++++++++ .../src/index.css.map | 1 + 2 files changed, 90 insertions(+) create mode 100644 22_Form_Using_Hooks/22_form_using_hooks_boilerplate/src/index.css create mode 100644 22_Form_Using_Hooks/22_form_using_hooks_boilerplate/src/index.css.map diff --git a/22_Form_Using_Hooks/22_form_using_hooks_boilerplate/src/index.css b/22_Form_Using_Hooks/22_form_using_hooks_boilerplate/src/index.css new file mode 100644 index 0000000..c9158bc --- /dev/null +++ b/22_Form_Using_Hooks/22_form_using_hooks_boilerplate/src/index.css @@ -0,0 +1,89 @@ +/* == General style === */ +* { + box-sizing: border-box; + padding: 0; + margin: 0; +} + +html, +body { + height: 100%; + line-height: 1.5; + font-family: "Montserrat"; + font-weight: 300; + color: black; +} + +.root { + min-height: 100%; + position: relative; +} + +.header-wrapper, +.main-wrapper, +.footer-wrapper { + width: 85%; + margin: auto; +} + +.header-wrapper, +.main-wrapper { + padding: 10px; + margin: 2px auto; +} + +h1 { + font-size: 70px; + font-weight: 300; +} + +h2, +h3 { + font-weight: 300; +} + +header { + background-color: #61dbfb; + padding: 25; + padding: 10px; +} + +main { + padding: 10px; + padding-bottom: 60px; + /* Height of the footer */ +} + +ul { + margin-left: 15px; +} + +ul li { + list-style: none; +} + +footer { + position: absolute; + bottom: 0; + width: 100%; + height: 60px; + /* Height of the footer */ + background: #6cf; +} + +.footer-wrapper { + font-weight: 400; + text-align: center; + line-height: 60px; +} + +.user-card { + margin-top: 10px; +} + +.user-card > img { + border-radius: 50%; + width: 14%; +} + +/*# sourceMappingURL=index.css.map */ diff --git a/22_Form_Using_Hooks/22_form_using_hooks_boilerplate/src/index.css.map b/22_Form_Using_Hooks/22_form_using_hooks_boilerplate/src/index.css.map new file mode 100644 index 0000000..660dac5 --- /dev/null +++ b/22_Form_Using_Hooks/22_form_using_hooks_boilerplate/src/index.css.map @@ -0,0 +1 @@ +{"version":3,"sourceRoot":"","sources":["index.scss"],"names":[],"mappings":"AAAA;AAEA;EACE;EACA;EACA;;;AAGF;AAAA;EAEE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;AAAA;AAAA;EAGE;EACA;;;AAGF;AAAA;EAEE;EACA;;;AAGF;EACE;EACA;;;AAGF;AAAA;EAEE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;AACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;AACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAEF;EACE;;;AAEF;EACE;EACA","file":"index.css"} \ No newline at end of file