From 62aa03d64e9b0b9da7842e2a8bec0a209e8b89b5 Mon Sep 17 00:00:00 2001 From: GonzaloIriart Date: Fri, 26 Apr 2019 14:27:34 -0300 Subject: [PATCH 1/5] exercise 1 --- 00-HTML-CSS-basics/Exercise 1/index.html | 18 ++++++++++++ 00-HTML-CSS-basics/Exercise 1/media.html | 24 ++++++++++++++++ 00-HTML-CSS-basics/Exercise 1/table.html | 29 ++++++++++++++++++++ 00-HTML-CSS-basics/Exercise 1/todo-list.html | 17 ++++++++++++ 4 files changed, 88 insertions(+) create mode 100644 00-HTML-CSS-basics/Exercise 1/index.html create mode 100644 00-HTML-CSS-basics/Exercise 1/media.html create mode 100644 00-HTML-CSS-basics/Exercise 1/table.html create mode 100644 00-HTML-CSS-basics/Exercise 1/todo-list.html diff --git a/00-HTML-CSS-basics/Exercise 1/index.html b/00-HTML-CSS-basics/Exercise 1/index.html new file mode 100644 index 000000000..3f8d23426 --- /dev/null +++ b/00-HTML-CSS-basics/Exercise 1/index.html @@ -0,0 +1,18 @@ + + + + + + + Exercise 1 navigation + + + + + \ No newline at end of file diff --git a/00-HTML-CSS-basics/Exercise 1/media.html b/00-HTML-CSS-basics/Exercise 1/media.html new file mode 100644 index 000000000..761af7707 --- /dev/null +++ b/00-HTML-CSS-basics/Exercise 1/media.html @@ -0,0 +1,24 @@ + + + + + + + Document + + +
Media: image, video, audio
+ + + + + \ No newline at end of file diff --git a/00-HTML-CSS-basics/Exercise 1/table.html b/00-HTML-CSS-basics/Exercise 1/table.html new file mode 100644 index 000000000..b4b0b7956 --- /dev/null +++ b/00-HTML-CSS-basics/Exercise 1/table.html @@ -0,0 +1,29 @@ + + + + + + + Document + + +
Expense table
+ + + + + + + + + + + + + + + + +
DateItemExpense
22/04Gas$500
20/04Food$350
+ + \ No newline at end of file diff --git a/00-HTML-CSS-basics/Exercise 1/todo-list.html b/00-HTML-CSS-basics/Exercise 1/todo-list.html new file mode 100644 index 000000000..7f9d6bd4c --- /dev/null +++ b/00-HTML-CSS-basics/Exercise 1/todo-list.html @@ -0,0 +1,17 @@ + + + + + + + Document + + +
My todo list!
+ + + \ No newline at end of file From 826e16324443428ab6768d4697017824f5020fea Mon Sep 17 00:00:00 2001 From: GonzaloIriart Date: Sat, 27 Apr 2019 01:14:47 -0300 Subject: [PATCH 2/5] exercise2 --- 00-HTML-CSS-basics/Exercise 2/index.html | 36 ++ 00-HTML-CSS-basics/Exercise 2/normalize.css | 349 ++++++++++++++++++++ 00-HTML-CSS-basics/Exercise 2/style.css | 55 +++ 3 files changed, 440 insertions(+) create mode 100644 00-HTML-CSS-basics/Exercise 2/index.html create mode 100644 00-HTML-CSS-basics/Exercise 2/normalize.css create mode 100644 00-HTML-CSS-basics/Exercise 2/style.css diff --git a/00-HTML-CSS-basics/Exercise 2/index.html b/00-HTML-CSS-basics/Exercise 2/index.html new file mode 100644 index 000000000..9704bbf18 --- /dev/null +++ b/00-HTML-CSS-basics/Exercise 2/index.html @@ -0,0 +1,36 @@ + + + + + + + + + Document + + +
+ Header +
+ +
+
+ article header +
+
+ article body Lorem ipsum dolor sit amet consectetur adipisicing elit. Vitae ab doloremque libero perferendis hic. Est aperiam, inventore quo reiciendis, temporibus, tenetur aspernatur maiores vitae quasi iusto praesentium dicta cum neque itaque sint voluptates exercitationem? Atque blanditiis similique dolorem cupiditate architecto? +
+
+ article footer +
+
+ +
+ Footer +
+ + \ No newline at end of file diff --git a/00-HTML-CSS-basics/Exercise 2/normalize.css b/00-HTML-CSS-basics/Exercise 2/normalize.css new file mode 100644 index 000000000..c45a85f89 --- /dev/null +++ b/00-HTML-CSS-basics/Exercise 2/normalize.css @@ -0,0 +1,349 @@ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ + +/* Document + ========================================================================== */ + +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ + + html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ + } + + /* Sections + ========================================================================== */ + + /** + * Remove the margin in all browsers. + */ + + body { + margin: 0; + } + + /** + * Render the `main` element consistently in IE. + */ + + main { + display: block; + } + + /** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + + h1 { + font-size: 2em; + margin: 0.67em 0; + } + + /* Grouping content + ========================================================================== */ + + /** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + + hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ + } + + /** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + + pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ + } + + /* Text-level semantics + ========================================================================== */ + + /** + * Remove the gray background on active links in IE 10. + */ + + a { + background-color: transparent; + } + + /** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + + abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ + } + + /** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + + b, + strong { + font-weight: bolder; + } + + /** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + + code, + kbd, + samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ + } + + /** + * Add the correct font size in all browsers. + */ + + small { + font-size: 80%; + } + + /** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + + sub, + sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; + } + + sub { + bottom: -0.25em; + } + + sup { + top: -0.5em; + } + + /* Embedded content + ========================================================================== */ + + /** + * Remove the border on images inside links in IE 10. + */ + + img { + border-style: none; + } + + /* Forms + ========================================================================== */ + + /** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ + + button, + input, + optgroup, + select, + textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ + } + + /** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + + button, + input { /* 1 */ + overflow: visible; + } + + /** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + + button, + select { /* 1 */ + text-transform: none; + } + + /** + * Correct the inability to style clickable types in iOS and Safari. + */ + + button, + [type="button"], + [type="reset"], + [type="submit"] { + -webkit-appearance: button; + } + + /** + * Remove the inner border and padding in Firefox. + */ + + button::-moz-focus-inner, + [type="button"]::-moz-focus-inner, + [type="reset"]::-moz-focus-inner, + [type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; + } + + /** + * Restore the focus styles unset by the previous rule. + */ + + button:-moz-focusring, + [type="button"]:-moz-focusring, + [type="reset"]:-moz-focusring, + [type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; + } + + /** + * Correct the padding in Firefox. + */ + + fieldset { + padding: 0.35em 0.75em 0.625em; + } + + /** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + + legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ + } + + /** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + + progress { + vertical-align: baseline; + } + + /** + * Remove the default vertical scrollbar in IE 10+. + */ + + textarea { + overflow: auto; + } + + /** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ + + [type="checkbox"], + [type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ + } + + /** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + + [type="number"]::-webkit-inner-spin-button, + [type="number"]::-webkit-outer-spin-button { + height: auto; + } + + /** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + + [type="search"] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ + } + + /** + * Remove the inner padding in Chrome and Safari on macOS. + */ + + [type="search"]::-webkit-search-decoration { + -webkit-appearance: none; + } + + /** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + + ::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ + } + + /* Interactive + ========================================================================== */ + + /* + * Add the correct display in Edge, IE 10+, and Firefox. + */ + + details { + display: block; + } + + /* + * Add the correct display in all browsers. + */ + + summary { + display: list-item; + } + + /* Misc + ========================================================================== */ + + /** + * Add the correct display in IE 10+. + */ + + template { + display: none; + } + + /** + * Add the correct display in IE 10. + */ + + [hidden] { + display: none; + } \ No newline at end of file diff --git a/00-HTML-CSS-basics/Exercise 2/style.css b/00-HTML-CSS-basics/Exercise 2/style.css new file mode 100644 index 000000000..f5553647f --- /dev/null +++ b/00-HTML-CSS-basics/Exercise 2/style.css @@ -0,0 +1,55 @@ +html { + font-family: 'Courier New', Courier, monospace; + font-size: 14px; + +} + + +header,footer,aside,nav { + background-color: blueviolet; + margin: 1%; + height: 25vh; +} + +header,footer { + text-align: center; +} + +.header { + font-size: 46px; + background-color: magenta; +} + +.footer { + font-size: 10px; + background-color: magenta; + float: left; + clear: both; + width: 100% +} + +.content { + font-size: 14px; + margin: 1%; + width: 50%; + float: left; + height: 25vh; +} + +.content header,footer{ + height: 5vh; +} + +.navigation { + font-size: 12px; + background-color: blue; + width: 20%; + float: left; +} + +.sidebar { + font-size: 10px; + background-color: magenta; + width: 20%; + float: left; +} \ No newline at end of file From 0ed3824b2b051a65537ef5672c5ca8cca9d20cab Mon Sep 17 00:00:00 2001 From: GonzaloIriart Date: Sat, 27 Apr 2019 15:56:48 -0300 Subject: [PATCH 3/5] Exercise 3 --- 00-HTML-CSS-basics/Exercise 3/index.html | 51 +++ 00-HTML-CSS-basics/Exercise 3/normalize.css | 349 ++++++++++++++++++++ 00-HTML-CSS-basics/Exercise 3/style.css | 70 ++++ 3 files changed, 470 insertions(+) create mode 100644 00-HTML-CSS-basics/Exercise 3/index.html create mode 100644 00-HTML-CSS-basics/Exercise 3/normalize.css create mode 100644 00-HTML-CSS-basics/Exercise 3/style.css diff --git a/00-HTML-CSS-basics/Exercise 3/index.html b/00-HTML-CSS-basics/Exercise 3/index.html new file mode 100644 index 000000000..c31b99c38 --- /dev/null +++ b/00-HTML-CSS-basics/Exercise 3/index.html @@ -0,0 +1,51 @@ + + + + + + + + + Document + + +
+
+

Animals

+

Lorem ipsum dolor sit amet consectetur adipisicing elit. Rem ipsa nihil modi nulla autem voluptatum accusamus quia voluptatibus temporibus deleniti explicabo, dolores qui aliquam quidem fuga placeat iure sunt quo libero? Aut, consectetur. Iste asperiores ullam accusantium omnis non assumenda iusto. Officia, ipsam reiciendis. Laboriosam minus aspernatur quae eaque cumque?

+
+
+
+ Dog +
Dog
+
+ +
+ Squirrel +
Squirrel
+
+ +
+ Camel +
Camel
+
+
+
+
+ Cheeta +
Cheeta
+
+ +
+ Panda +
Panda
+
+ +
+ Cat +
Cat
+
+
+
+ + \ No newline at end of file diff --git a/00-HTML-CSS-basics/Exercise 3/normalize.css b/00-HTML-CSS-basics/Exercise 3/normalize.css new file mode 100644 index 000000000..c45a85f89 --- /dev/null +++ b/00-HTML-CSS-basics/Exercise 3/normalize.css @@ -0,0 +1,349 @@ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ + +/* Document + ========================================================================== */ + +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ + + html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ + } + + /* Sections + ========================================================================== */ + + /** + * Remove the margin in all browsers. + */ + + body { + margin: 0; + } + + /** + * Render the `main` element consistently in IE. + */ + + main { + display: block; + } + + /** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + + h1 { + font-size: 2em; + margin: 0.67em 0; + } + + /* Grouping content + ========================================================================== */ + + /** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + + hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ + } + + /** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + + pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ + } + + /* Text-level semantics + ========================================================================== */ + + /** + * Remove the gray background on active links in IE 10. + */ + + a { + background-color: transparent; + } + + /** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + + abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ + } + + /** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + + b, + strong { + font-weight: bolder; + } + + /** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + + code, + kbd, + samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ + } + + /** + * Add the correct font size in all browsers. + */ + + small { + font-size: 80%; + } + + /** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + + sub, + sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; + } + + sub { + bottom: -0.25em; + } + + sup { + top: -0.5em; + } + + /* Embedded content + ========================================================================== */ + + /** + * Remove the border on images inside links in IE 10. + */ + + img { + border-style: none; + } + + /* Forms + ========================================================================== */ + + /** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ + + button, + input, + optgroup, + select, + textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ + } + + /** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + + button, + input { /* 1 */ + overflow: visible; + } + + /** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + + button, + select { /* 1 */ + text-transform: none; + } + + /** + * Correct the inability to style clickable types in iOS and Safari. + */ + + button, + [type="button"], + [type="reset"], + [type="submit"] { + -webkit-appearance: button; + } + + /** + * Remove the inner border and padding in Firefox. + */ + + button::-moz-focus-inner, + [type="button"]::-moz-focus-inner, + [type="reset"]::-moz-focus-inner, + [type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; + } + + /** + * Restore the focus styles unset by the previous rule. + */ + + button:-moz-focusring, + [type="button"]:-moz-focusring, + [type="reset"]:-moz-focusring, + [type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; + } + + /** + * Correct the padding in Firefox. + */ + + fieldset { + padding: 0.35em 0.75em 0.625em; + } + + /** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + + legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ + } + + /** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + + progress { + vertical-align: baseline; + } + + /** + * Remove the default vertical scrollbar in IE 10+. + */ + + textarea { + overflow: auto; + } + + /** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ + + [type="checkbox"], + [type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ + } + + /** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + + [type="number"]::-webkit-inner-spin-button, + [type="number"]::-webkit-outer-spin-button { + height: auto; + } + + /** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + + [type="search"] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ + } + + /** + * Remove the inner padding in Chrome and Safari on macOS. + */ + + [type="search"]::-webkit-search-decoration { + -webkit-appearance: none; + } + + /** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + + ::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ + } + + /* Interactive + ========================================================================== */ + + /* + * Add the correct display in Edge, IE 10+, and Firefox. + */ + + details { + display: block; + } + + /* + * Add the correct display in all browsers. + */ + + summary { + display: list-item; + } + + /* Misc + ========================================================================== */ + + /** + * Add the correct display in IE 10+. + */ + + template { + display: none; + } + + /** + * Add the correct display in IE 10. + */ + + [hidden] { + display: none; + } \ No newline at end of file diff --git a/00-HTML-CSS-basics/Exercise 3/style.css b/00-HTML-CSS-basics/Exercise 3/style.css new file mode 100644 index 000000000..268344604 --- /dev/null +++ b/00-HTML-CSS-basics/Exercise 3/style.css @@ -0,0 +1,70 @@ +*, *:before, *:after { + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + } + +img{ + width: 100%; +} + +.header{ + height: 25vh; +} + +.container{ + margin: 0 auto; + width: 90%; +} + +img:hover{ + opacity: 0.75; +} + +.img{ + position:relative; +} + +.img:hover .hiddendiv{ + visibility: visible; +} + +.hiddendiv{ + margin-left: 1rem; + position: absolute; + top: 0; + left: 0; + background-color: rgb(241, 237, 232); + opacity: 0.8; + visibility: hidden; + padding: 10px 50px ; +} + +.clearfix:before, +.clearfix:after { + content: " "; + display: table; +} + +.clearfix:after { + clear: both; +} + +.clearfix { + *zoom: 1; +} + +@media (min-width: 40rem) { + .column { + float: left; + padding-left: 1rem; + padding-right: 1rem; + } + + .column.full { width: 100%; } + .column.two-thirds { width: 66.7%; } + .column.half { width: 50%; } + .column.third { width: 33.3%; } + .column.fourth { width: 25%; } + .column.flow-opposite { float: right; } + } \ No newline at end of file From 38e4bf9bf0e50c5da3e44ae05b83e528679c2f8b Mon Sep 17 00:00:00 2001 From: GonzaloIriart Date: Mon, 6 May 2019 12:29:57 -0300 Subject: [PATCH 4/5] ex 1.vi faltante --- 00-HTML-CSS-basics/Exercise 1/form.html | 33 ++++++++++++++++++++++++ 00-HTML-CSS-basics/Exercise 1/index.html | 1 + 2 files changed, 34 insertions(+) create mode 100644 00-HTML-CSS-basics/Exercise 1/form.html diff --git a/00-HTML-CSS-basics/Exercise 1/form.html b/00-HTML-CSS-basics/Exercise 1/form.html new file mode 100644 index 000000000..4735b8523 --- /dev/null +++ b/00-HTML-CSS-basics/Exercise 1/form.html @@ -0,0 +1,33 @@ + + + + + + + Document + + +
+ Name: +
+ Lastname: +
+ Birthday: +
+ Email: +
+ + Select favorite sport +
+ Please, add a little bio
+
+ + +
+ + \ No newline at end of file diff --git a/00-HTML-CSS-basics/Exercise 1/index.html b/00-HTML-CSS-basics/Exercise 1/index.html index 3f8d23426..4f8e85cc9 100644 --- a/00-HTML-CSS-basics/Exercise 1/index.html +++ b/00-HTML-CSS-basics/Exercise 1/index.html @@ -12,6 +12,7 @@
  • List
  • Table
  • Media files
  • +
  • Media files
  • From 64f522e9c2fbe2e4f186b050292bc362ceb95502 Mon Sep 17 00:00:00 2001 From: GonzaloIriart Date: Mon, 6 May 2019 18:31:44 -0300 Subject: [PATCH 5/5] implemented corrections --- 00-HTML-CSS-basics/Exercise 2/style.css | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/00-HTML-CSS-basics/Exercise 2/style.css b/00-HTML-CSS-basics/Exercise 2/style.css index f5553647f..986cb68cc 100644 --- a/00-HTML-CSS-basics/Exercise 2/style.css +++ b/00-HTML-CSS-basics/Exercise 2/style.css @@ -17,12 +17,20 @@ header,footer { .header { font-size: 46px; + +} + + +[class*="a"]{ + background-color: blue; +} + +[class$="r"]{ background-color: magenta; } .footer { font-size: 10px; - background-color: magenta; float: left; clear: both; width: 100% @@ -42,14 +50,12 @@ header,footer { .navigation { font-size: 12px; - background-color: blue; width: 20%; float: left; } .sidebar { font-size: 10px; - background-color: magenta; width: 20%; float: left; } \ No newline at end of file