diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/Step_1.html b/03_Exercises/03_JavaScript/javascript-basics-01/Step_1.html deleted file mode 100644 index de81630e..00000000 --- a/03_Exercises/03_JavaScript/javascript-basics-01/Step_1.html +++ /dev/null @@ -1,9 +0,0 @@ - - - - Step 1 - - - - - diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/Step_2.html b/03_Exercises/03_JavaScript/javascript-basics-01/Step_2.html deleted file mode 100644 index a2147206..00000000 --- a/03_Exercises/03_JavaScript/javascript-basics-01/Step_2.html +++ /dev/null @@ -1,9 +0,0 @@ - - - - Step 2 - - - - - diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/Step_3.html b/03_Exercises/03_JavaScript/javascript-basics-01/Step_3.html deleted file mode 100644 index 20b2a198..00000000 --- a/03_Exercises/03_JavaScript/javascript-basics-01/Step_3.html +++ /dev/null @@ -1,9 +0,0 @@ - - - - Step 3 - - - - - diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/Step_4.html b/03_Exercises/03_JavaScript/javascript-basics-01/Step_4.html deleted file mode 100644 index 12c89425..00000000 --- a/03_Exercises/03_JavaScript/javascript-basics-01/Step_4.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - Step 4 - - - -
- - - - -
- - diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/Step_5.html b/03_Exercises/03_JavaScript/javascript-basics-01/Step_5.html deleted file mode 100644 index 60479f28..00000000 --- a/03_Exercises/03_JavaScript/javascript-basics-01/Step_5.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - Step 5 - - - -
-
-
- -
- - diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/Step_6.html b/03_Exercises/03_JavaScript/javascript-basics-01/Step_6.html deleted file mode 100644 index b019dccd..00000000 --- a/03_Exercises/03_JavaScript/javascript-basics-01/Step_6.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - Step 6 - - - -
-
-
- -
- - diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/step1/Step_1.html b/03_Exercises/03_JavaScript/javascript-basics-01/step1/Step_1.html new file mode 100644 index 00000000..ba30ff0e --- /dev/null +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step1/Step_1.html @@ -0,0 +1,13 @@ + + + + Step 1 + + + + + + diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/step1/step1.js b/03_Exercises/03_JavaScript/javascript-basics-01/step1/step1.js new file mode 100644 index 00000000..d69b1028 --- /dev/null +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step1/step1.js @@ -0,0 +1,2 @@ +var x = "name"; +alert(x); diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/step2/Step_2.html b/03_Exercises/03_JavaScript/javascript-basics-01/step2/Step_2.html new file mode 100644 index 00000000..1ec64517 --- /dev/null +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step2/Step_2.html @@ -0,0 +1,10 @@ + + + + Step 2 + + + + + + diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/step2/step2.js b/03_Exercises/03_JavaScript/javascript-basics-01/step2/step2.js new file mode 100644 index 00000000..a9044245 --- /dev/null +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step2/step2.js @@ -0,0 +1,4 @@ +var x = "name"; +var y = "surname"; +var w = "city"; +alert(x + ":Doe \n" + y + ":John \n" + w + ":New york"); diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/step3/Step_3.html b/03_Exercises/03_JavaScript/javascript-basics-01/step3/Step_3.html new file mode 100644 index 00000000..c968b10f --- /dev/null +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step3/Step_3.html @@ -0,0 +1,10 @@ + + + + Step 3 + + + + + + diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/step3/step_3.js b/03_Exercises/03_JavaScript/javascript-basics-01/step3/step_3.js new file mode 100644 index 00000000..7348c697 --- /dev/null +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step3/step_3.js @@ -0,0 +1,3 @@ +var firstName= prompt("what is your name?"); + +alert ("Hello! " + firstName); \ No newline at end of file diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/step4/Step_4.html b/03_Exercises/03_JavaScript/javascript-basics-01/step4/Step_4.html new file mode 100644 index 00000000..dc7f50e4 --- /dev/null +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step4/Step_4.html @@ -0,0 +1,19 @@ + + + + Step 4 + + + +
+ + + + +
+ + + diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/step4/step_4.js b/03_Exercises/03_JavaScript/javascript-basics-01/step4/step_4.js new file mode 100644 index 00000000..ba2ea711 --- /dev/null +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step4/step_4.js @@ -0,0 +1,8 @@ +function human() { + var name = document.getElementById("name").value; + var surname = document.getElementById("surname").value; + var city = document.getElementById("city").value ; + + + alert(name +'\n' + surname +'\n' + city ); +} diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/step5/Step_5.html b/03_Exercises/03_JavaScript/javascript-basics-01/step5/Step_5.html new file mode 100644 index 00000000..19fa3594 --- /dev/null +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step5/Step_5.html @@ -0,0 +1,24 @@ + + + + Step 5 + + + + +
+
+
+ +
+ + diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/step5/Step_5.js b/03_Exercises/03_JavaScript/javascript-basics-01/step5/Step_5.js new file mode 100644 index 00000000..df34ea9e --- /dev/null +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step5/Step_5.js @@ -0,0 +1,6 @@ +function multiplyBy() { + var num1 = Number(document.getElementById("first_number").value); + var num2 = Number(document.getElementById("second_number").value); + var x = (document.getElementById("validate").innerHTML = num1 * num2); + alert(x); +} diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/step6/Step_6.html b/03_Exercises/03_JavaScript/javascript-basics-01/step6/Step_6.html new file mode 100644 index 00000000..cd07ba19 --- /dev/null +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step6/Step_6.html @@ -0,0 +1,17 @@ + + + + Step 6 + + + + +
+
+
+ +
+ + diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/step6/step_6.js b/03_Exercises/03_JavaScript/javascript-basics-01/step6/step_6.js new file mode 100644 index 00000000..5adb9440 --- /dev/null +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step6/step_6.js @@ -0,0 +1,5 @@ +function divide() { + var num1 = document.getElementById("first_number").value; + var num2 = document.getElementById("second_number").value; + alert(num1 % num2); +} diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/Step_7.html b/03_Exercises/03_JavaScript/javascript-basics-01/step7/Step_7.html similarity index 74% rename from 03_Exercises/03_JavaScript/javascript-basics-01/Step_7.html rename to 03_Exercises/03_JavaScript/javascript-basics-01/step7/Step_7.html index 05ff5834..db331818 100644 --- a/03_Exercises/03_JavaScript/javascript-basics-01/Step_7.html +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step7/Step_7.html @@ -8,7 +8,8 @@


- +
+ diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/step7/step_7.js b/03_Exercises/03_JavaScript/javascript-basics-01/step7/step_7.js new file mode 100644 index 00000000..e843fac3 --- /dev/null +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step7/step_7.js @@ -0,0 +1,10 @@ +function myFunc(){ + var x=document.getElementById("shoe_size").value +var y=document.getElementById("year").value +var w= x *2; +w=(w+5)*50; +var result=(w-y)+1766; +alert(result); + + +} \ No newline at end of file diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/Step_8.html b/03_Exercises/03_JavaScript/javascript-basics-01/step8/Step_8.html similarity index 88% rename from 03_Exercises/03_JavaScript/javascript-basics-01/Step_8.html rename to 03_Exercises/03_JavaScript/javascript-basics-01/step8/Step_8.html index 75804e8b..9a663778 100644 --- a/03_Exercises/03_JavaScript/javascript-basics-01/Step_8.html +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step8/Step_8.html @@ -9,5 +9,7 @@
+ + \ No newline at end of file diff --git a/03_Exercises/03_JavaScript/javascript-basics-01/step8/step_8.js b/03_Exercises/03_JavaScript/javascript-basics-01/step8/step_8.js new file mode 100644 index 00000000..5317d473 --- /dev/null +++ b/03_Exercises/03_JavaScript/javascript-basics-01/step8/step_8.js @@ -0,0 +1,7 @@ +var btn = document.getElementById("validate").onclick = function(){ +var age = document.getElementById("age").value; +if(age > 18) +alert("you are above 18"); +else +alert("you are under 18"); +} \ No newline at end of file diff --git a/04_Challenges/cv-styling-master/public/style1/index.html b/04_Challenges/cv-styling-master/public/style1/index.html index c40c1144..f02859b6 100644 --- a/04_Challenges/cv-styling-master/public/style1/index.html +++ b/04_Challenges/cv-styling-master/public/style1/index.html @@ -1,197 +1,214 @@ - - - - - - - + + + + + + + - JStudent | CV - - - - + JStudent | CV - - -
-
-
-
-

Student Name

-

Codes and Sleeps

-
-
- Student Name -
-
-
-
-
-

About

-

- Pellentesque nec nisi at sapien sagittis sagittis. Aliquam eu condimentum mauris. Proin accumsan enim at risus hendrerit lobortis. Nunc sollicitudin sodales lectus, et rhoncus mi molestie hendrerit. Vestibulum velit lorem, rhoncus a congue ultricies, faucibus facilisis risus. Mauris turpis ante, aliquet ac venenatis at, ornare ut velit. Duis ut erat neque, eget consectetur tellus. -

-
-
-

Competencies

-
-
- HTML -
-
- CSS -
-
- Javascript -
+ + + + + + +
+
+
+
+

Rim zeaiter

+

Codes and Sleeps

+
+
+ Rim zeaiter +
-
-
- HTML +
+
+
+

About

+

+ I'm a fresh graduate from Lebanese university in Biochemistry. And + I'm learning now at Codi tech bootcamp to be a full stack web + developer. +

+
+
+

Competencies

+
+
+ HTML +
+
+ CSS +
+
+ Javascript +
-
- CSS +
+
+ HTML +
+
+ CSS +
+
+ Javascript +
-
- Javascript +
+
+

Experiences

+
+

+ Programming Languages + TECHNICAL +

+
+ lebanon + + 18 + / + 6 + / + 2022 + +
+

+ Programming Languages : Html, Css, JavaScript Operating Systems : + Windows, Linux Applications : Microsoft office,Visual Studio +

-
-
-
-

Experiences

-
-

- Man2ouche Seller - Snack Edouard -

-
- - Paris - - - 30 - / - 12 - / - 1995 - +
+

+ WORKSHOPS & SEMINARS + 24 January 2020 : Beyond words + +

+
+ Paris + + 30 + / + 12 + / + 1995 + +
+

+ 24 January 2020 : Beyond words :Read and influence people through + non-verbal communication 28 January 2020 : Business planning Mrs + Linda Achkouty Mouawad 27 Jun 2020 : Education on innovation Mr + Rabih Baalbaki +

-

- Pellentesque nec nisi at sapien sagittis sagittis. Aliquam eu condimentum mauris. Proin accumsan enim at risus hendrerit lobortis. Nunc sollicitudin sodales lectus, et rhoncus mi molestie hendrerit. Vestibulum velit lorem, rhoncus a congue ultricies, faucibus facilisis risus. Mauris turpis ante, aliquet ac venenatis at, ornare ut velit. Duis ut erat neque, eget consectetur tellus. -

-
-
-

- Man2ouche Seller - Snack Edouard -

-
- - Paris - - - 30 - / - 12 - / - 1995 - +
+
+

Education

+
+

+ Web Stack Training + Codi +

+
+ Beirut + + 30 + / + 12 + / + 1995 + +
+

+ Pellentesque nec nisi at sapien sagittis sagittis. Aliquam eu + condimentum mauris. Proin accumsan enim at risus hendrerit + lobortis. Nunc sollicitudin sodales lectus, et rhoncus mi molestie + hendrerit. Vestibulum velit lorem, rhoncus a congue ultricies, + faucibus facilisis risus. Mauris turpis ante, aliquet ac venenatis + at, ornare ut velit. Duis ut erat neque, eget consectetur tellus. +

-

- Pellentesque nec nisi at sapien sagittis sagittis. Aliquam eu condimentum mauris. Proin accumsan enim at risus hendrerit lobortis. Nunc sollicitudin sodales lectus, et rhoncus mi molestie hendrerit. Vestibulum velit lorem, rhoncus a congue ultricies, faucibus facilisis risus. Mauris turpis ante, aliquet ac venenatis at, ornare ut velit. Duis ut erat neque, eget consectetur tellus. -

-
- -
-

Education

-
-

- Web Stack Training - Codi -

-
- - Beirut - - - 30 - / - 12 - / - 1995 - +
+

+ Bachelor’s Degree in Biochemstry + + Lebanese University – Hadath +

+
+ Beirut + + 30 + / + 12 + / + 2021 + +
+

+ Biochemstry COURSES Physiology Anatomy Radiology Enzymology + Metabolism Biochimica +

-

- Pellentesque nec nisi at sapien sagittis sagittis. Aliquam eu condimentum mauris. Proin accumsan enim at risus hendrerit lobortis. Nunc sollicitudin sodales lectus, et rhoncus mi molestie hendrerit. Vestibulum velit lorem, rhoncus a congue ultricies, faucibus facilisis risus. Mauris turpis ante, aliquet ac venenatis at, ornare ut velit. Duis ut erat neque, eget consectetur tellus. -

-
-
-

- Man2ouche Seller - Snack Edouard -

-
- - Paris - - - 30 - / - 12 - / - 1995 - +
+
+

Hobbies

+ +
+
+

Contact

+
+
+
Email
+
+ zeayterrim6@gmail.com +
+
+
+
Skype
+
Rim zeaiter
+
+
+
Phone/Whatsapp
+
+ +96176875591 +
+
+
+
Github
+
+ rim-z +
+
+
+
Facebook
+
+ Rim zeaiter +
+
-

- Pellentesque nec nisi at sapien sagittis sagittis. Aliquam eu condimentum mauris. Proin accumsan enim at risus hendrerit lobortis. Nunc sollicitudin sodales lectus, et rhoncus mi molestie hendrerit. Vestibulum velit lorem, rhoncus a congue ultricies, faucibus facilisis risus. Mauris turpis ante, aliquet ac venenatis at, ornare ut velit. Duis ut erat neque, eget consectetur tellus. -

-
- -
-

Hobbies

- -
-
-

Contact

-
-
-
Email
-
- student@codi.tech -
-
-
-
Skype
-
first-last
-
-
-
Phone/Whatsapp
-
- +9613123123 -
-
-
-
Github
-
- UserName -
-
-
-
Facebook
-
- Profile Name -
-
-
-
+ + - - + diff --git a/04_Challenges/cv-styling-master/public/style1/style.css b/04_Challenges/cv-styling-master/public/style1/style.css new file mode 100644 index 00000000..ab22eeb7 --- /dev/null +++ b/04_Challenges/cv-styling-master/public/style1/style.css @@ -0,0 +1,213 @@ +header { + background: rgb(138, 132, 132); + overflow: auto; +} +.Introduction { + display: flex; + flex-direction: row; + height: 177px; +} + +figure { + display: inline-block; + margin-left: 10%; +} + +hgroup { + display: inline-block; + margin-left: 20%; + color: red; +} + +.content { + width: 80%; + margin: auto; + padding-top: 5px; + display: grid; +} + +#competencies { + width: 90%; + margin-top: 21%; +} + +.skill { + width: 100%; + color: white; + letter-spacing: 1px; + margin-right: 20%; + padding: 3px; + padding-left: 5px; +} + +.skills-primary::before { + content: "Main"; + color: black; +} + +.skills-secondary::before { + content: "Other"; + color: black; +} +.skills-primary { + background-color: darkgray; +} + +.skills-secondary { + background-color: lightgrey; +} + +.skill span { + padding: 5px; + display: inline-block; +} + +[data-skill="1"] span { + display: inline-block; + width: 10%; + background-color: red; +} + +[data-skill="3"] span { + display: inline-block; + width: 30%; + background-color: red; +} + +[data-skill="5"] span { + display: inline-block; + width: 50%; + background-color: red; +} + +[data-skill="7"] span { + display: inline-block; + width: 70%; + background-color: red; +} + +[data-skill="9"] span { + display: inline-block; + width: 90%; + background-color: red; +} + +h3::before { + content: "\25cf"; + color: red; +} + +h3 { + border-bottom: 1px gray solid; +} +h4 { + color: red; + width: 100%; +} + +.experience-date-separator { + color: red; +} + +.experience-institution::before { + content: "@"; + color: red; +} + +.experience-location::before { + content: "in"; + color: red; +} +.experience { + width: 85%; +} +.experience-type { + font-weight: bolder; + color: red; +} +.experience-institution { + color: red; + font-style: normal; + font-weight: lighter; +} +.experience-details { + font-weight: lighter; +} + +.perience-date { + font-weight: lighter; +} + +.contacts dl { + overflow: hidden; + padding: 0; + margin: 0; +} +.contacts { + margin-left: -700px; +} + +.contacts dl dt { + float: left; + width: 150px; + padding: 5px; + margin: 0px; + color: white; + background-color: red; +} + +.contact .contact-value a { + text-decoration: none; + font-weight: bold; + color: red; +} + +.contact .contact-value { + float: left; + width: 300px; + margin: 0px; + padding: 5px; +} + +#contact { + position: absolute; + top: -50px; + right: 0px; +} +.contact .contact-value { + background-color: black; +} + +@media screen and (min-width: 900px) { + .content { + display: grid; + grid-template-columns: 1fr 1fr; + grid-template-rows: 1fr 1fr; + align-items: center; + } +} + +@media screen and (max-width: 600px) { + .contacts { + margin-left: 0px; + } + #contact { + position: relative; + top: 0px; + width: 100%; + } + .contacts dl dt { + float: left; + width: 100px; + padding: 5px; + margin: 0px; + color: white; + background-color: red; + } + .contact .contact-value { + float: left; + width: 200px; + margin: 0px; + padding: 5px; + } +} diff --git a/04_Challenges/cv-styling-master/public/style2/index.html b/04_Challenges/cv-styling-master/public/style2/index.html new file mode 100644 index 00000000..f02859b6 --- /dev/null +++ b/04_Challenges/cv-styling-master/public/style2/index.html @@ -0,0 +1,214 @@ + + + + + + + + + + + JStudent | CV + + + + + + + +
+
+
+
+

Rim zeaiter

+

Codes and Sleeps

+
+
+ Rim zeaiter +
+
+
+
+
+

About

+

+ I'm a fresh graduate from Lebanese university in Biochemistry. And + I'm learning now at Codi tech bootcamp to be a full stack web + developer. +

+
+
+

Competencies

+
+
+ HTML +
+
+ CSS +
+
+ Javascript +
+
+
+
+ HTML +
+
+ CSS +
+
+ Javascript +
+
+
+
+

Experiences

+
+

+ Programming Languages + TECHNICAL +

+
+ lebanon + + 18 + / + 6 + / + 2022 + +
+

+ Programming Languages : Html, Css, JavaScript Operating Systems : + Windows, Linux Applications : Microsoft office,Visual Studio +

+
+
+

+ WORKSHOPS & SEMINARS + 24 January 2020 : Beyond words + +

+
+ Paris + + 30 + / + 12 + / + 1995 + +
+

+ 24 January 2020 : Beyond words :Read and influence people through + non-verbal communication 28 January 2020 : Business planning Mrs + Linda Achkouty Mouawad 27 Jun 2020 : Education on innovation Mr + Rabih Baalbaki +

+
+
+
+

Education

+
+

+ Web Stack Training + Codi +

+
+ Beirut + + 30 + / + 12 + / + 1995 + +
+

+ Pellentesque nec nisi at sapien sagittis sagittis. Aliquam eu + condimentum mauris. Proin accumsan enim at risus hendrerit + lobortis. Nunc sollicitudin sodales lectus, et rhoncus mi molestie + hendrerit. Vestibulum velit lorem, rhoncus a congue ultricies, + faucibus facilisis risus. Mauris turpis ante, aliquet ac venenatis + at, ornare ut velit. Duis ut erat neque, eget consectetur tellus. +

+
+
+

+ Bachelor’s Degree in Biochemstry + + Lebanese University – Hadath +

+
+ Beirut + + 30 + / + 12 + / + 2021 + +
+

+ Biochemstry COURSES Physiology Anatomy Radiology Enzymology + Metabolism Biochimica +

+
+
+
+

Hobbies

+
    +
  • cooking
  • +
  • Sleeping
  • +
  • Writing CVs
  • +
+
+
+

Contact

+
+
+
Email
+
+ zeayterrim6@gmail.com +
+
+
+
Skype
+
Rim zeaiter
+
+
+
Phone/Whatsapp
+
+ +96176875591 +
+
+
+
Github
+
+ rim-z +
+
+
+
Facebook
+
+ Rim zeaiter +
+
+
+
+
+
+ + diff --git a/04_Challenges/cv-styling-master/public/style2/normalize.css b/04_Challenges/cv-styling-master/public/style2/normalize.css new file mode 100644 index 00000000..57f93c84 --- /dev/null +++ b/04_Challenges/cv-styling-master/public/style2/normalize.css @@ -0,0 +1,447 @@ +/*! normalize.css v7.0.0 | 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 + * IE on Windows Phone and in iOS. + */ + +html { + line-height: 1.15; /* 1 */ + -ms-text-size-adjust: 100%; /* 2 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* Sections + ========================================================================== */ + +/** + * Remove the margin in all browsers (opinionated). + */ + +body { + margin: 0; +} + +/** + * Add the correct display in IE 9-. + */ + +article, +aside, +footer, +header, +nav, +section { + 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 + ========================================================================== */ + +/** + * Add the correct display in IE 9-. + * 1. Add the correct display in IE. + */ + +figcaption, +figure, +main { /* 1 */ + display: block; +} + +/** + * Add the correct margin in IE 8. + */ + +figure { + margin: 1em 40px; +} + +/** + * 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 + ========================================================================== */ + +/** + * 1. Remove the gray background on active links in IE 10. + * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. + */ + +a { + background-color: transparent; /* 1 */ + -webkit-text-decoration-skip: objects; /* 2 */ +} + +/** + * 1. Remove the bottom border in Chrome 57- and Firefox 39-. + * 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 */ +} + +/** + * Prevent the duplicate application of `bolder` by the next rule in Safari 6. + */ + +b, +strong { + font-weight: inherit; +} + +/** + * 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 style in Android 4.3-. + */ + +dfn { + font-style: italic; +} + +/** + * Add the correct background and color in IE 9-. + */ + +mark { + background-color: #ff0; + color: #000; +} + +/** + * 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 + ========================================================================== */ + +/** + * Add the correct display in IE 9-. + */ + +audio, +video { + display: inline-block; +} + +/** + * Add the correct display in iOS 4-7. + */ + +audio:not([controls]) { + display: none; + height: 0; +} + +/** + * Remove the border on images inside links in IE 10-. + */ + +img { + border-style: none; +} + +/** + * Hide the overflow in IE. + */ + +svg:not(:root) { + overflow: hidden; +} + +/* Forms + ========================================================================== */ + +/** + * 1. Change the font styles in all browsers (opinionated). + * 2. Remove the margin in Firefox and Safari. + */ + +button, +input, +optgroup, +select, +textarea { + font-family: sans-serif; /* 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; +} + +/** + * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` + * controls in Android 4. + * 2. Correct the inability to style clickable types in iOS and Safari. + */ + +button, +html [type="button"], /* 1 */ +[type="reset"], +[type="submit"] { + -webkit-appearance: button; /* 2 */ +} + +/** + * 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 */ +} + +/** + * 1. Add the correct display in IE 9-. + * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + display: inline-block; /* 1 */ + vertical-align: baseline; /* 2 */ +} + +/** + * Remove the default vertical scrollbar in IE. + */ + +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 and cancel buttons in Chrome and Safari on macOS. + */ + +[type="search"]::-webkit-search-cancel-button, +[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 IE 9-. + * 1. Add the correct display in Edge, IE, and Firefox. + */ + +details, /* 1 */ +menu { + display: block; +} + +/* + * Add the correct display in all browsers. + */ + +summary { + display: list-item; +} + +/* Scripting + ========================================================================== */ + +/** + * Add the correct display in IE 9-. + */ + +canvas { + display: inline-block; +} + +/** + * Add the correct display in IE. + */ + +template { + display: none; +} + +/* Hidden + ========================================================================== */ + +/** + * Add the correct display in IE 10-. + */ + +[hidden] { + display: none; +} \ No newline at end of file diff --git a/04_Challenges/cv-styling-master/public/style2/style.css b/04_Challenges/cv-styling-master/public/style2/style.css new file mode 100644 index 00000000..8f80c8c9 --- /dev/null +++ b/04_Challenges/cv-styling-master/public/style2/style.css @@ -0,0 +1,201 @@ +h2 { + visibility: hidden; +} +header { + border-bottom: 1px gray solid; +} + +#about { + color: gray; +} +body div { + width: 70%; + margin: auto; +} + +h1 { + float: left; +} + +#about h3 { + visibility: hidden; +} + +hgroup { + margin: 50px; +} + +figure { + position: relative; + padding-left: 200px; + transform: rotate(-40deg); + float: right; +} + +.content p { + font-size: small; + color: black; +} + +.experience h4, +.experience, +.experience-details { + display: inline; +} + +.experience { + display: inline; + margin-left: 20%; +} + +.experience p { + margin-left: 20%; +} + +.experience-institution { + visibility: hidden; +} + +.experience-type { + color: rgb(64, 153, 119); +} + +.experience-details { + float: right; + color: gray; + margin-right: -60%; +} +.skill { + border: px solid white; + margin-left: 80%; +} + +.skills-primary { + background-color: white; + font-size: 17px; + color: white; + display: grid; + grid-template-columns: 90px 90px 90px; + grid-column-gap: 30px; +} + +.skills-secondary { + background-color: white; + font-size: 12px; + color: white; + display: grid; + grid-template-columns: 90px 90px 90px; + grid-column-gap: 30px; +} + +.skill span { + padding: 5px; + display: inline-block; + width: 100px; + height: 20px; + background-color: rgb(107, 156, 137); + overflow: hidden; +} + +.skills.skills-primary [data-skill="5"] span::after { + content: "\2605\2605\2605"; + color: white; +} +.skills.skills-primary [data-skill="3"] span::after { + content: "\2605\2605"; + color: white; +} +.skills.skills-primary [data-skill="1"] span::after { + content: "\2605"; + color: white; +} + +.skills.skills-secondary [data-skill="9"] span::after { + content: "\2605\2605\2605\2605\2605"; + color: white; +} +.skills.skills-secondary [data-skill="5"] span::after { + content: "\2605\2605\2605"; + color: white; +} +.skills.skills-secondary [data-skill="7"] span::after { + content: "\2605\2605\2605\2605\2605"; + color: white; +} + +ul { + margin-left: 20%; +} + +#contact h3 { + visibility: hidden; +} + +.contact-type { + visibility: hidden; +} + +.contacts { + display: flex; + flex-direction: row; + + justify-content: space-evenly; +} + +.contact-facebook a { + content: url(../images/facebook.png); + width: 60px; + height: 60px; +} + +.contact-email a { + content: url(../images/email.png); + width: 60px; + height: 60px; +} + +.contact-github a { + content: url(../images/github.png); + width: 60px; + height: 60px; +} + +.contact-phone a { + content: url(../images/phone.png); + width: 60px; + height: 60px; +} + +.contact-skype { + display: none; +} + +@media screen and (max-width: 600px) { + hgroup { + margin: 0px; + } + .content { + display: block; + width: 100%; + } + figure { + display: none; + } + .experience { + margin-left: 0px; + } + .experience p { + margin-left: 0px; + } + h1 { + border-bottom: 1px solid rgb(182, 182, 182); + margin: 10px 0px 10px -50px; + } + #\#wrapper > header > div > hgroup > h2 { + display: none; + } + .skills-secondary, + .skills-primary { + margin-left: -15px; + } +}