From d8553f9446f1d30e937f07d8e02b17c2af551777 Mon Sep 17 00:00:00 2001 From: anish-kmr <41281200+anish-kmr@users.noreply.github.com> Date: Thu, 4 Oct 2018 22:19:42 +0530 Subject: [PATCH 1/7] Add files via upload --- index-style.css | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 index-style.css diff --git a/index-style.css b/index-style.css new file mode 100644 index 0000000..8f8af70 --- /dev/null +++ b/index-style.css @@ -0,0 +1,33 @@ +body { + padding: 0; + margin: 0; + font-size: 12px; +} +ol{ + position: absolute; + width: 100%; + top:50%; + transform: translateY(-50%); +} +ol li{ + list-style-type: none; + display: inline-block; + text-align: center; + padding:3em 1em; + margin:auto 2.5%; + width:25%; + letter-spacing: 8px; + background-image:linear-gradient(to bottom,#3c7ee8,#95BEB6); + border:2px solid #8eb2ed; + border-radius: 25px; + transition: all .5s; +} +ol li a{ + text-decoration: none; + font-weight:bold; + padding: 1.5em; + font-size: 24px; +} +ol li:hover{ + transform: scale(1.2,1.2); +} From 9f0ae443c9aed2cbb6bb76601d9f85993c1dab87 Mon Sep 17 00:00:00 2001 From: anish-kmr <41281200+anish-kmr@users.noreply.github.com> Date: Thu, 4 Oct 2018 22:20:23 +0530 Subject: [PATCH 2/7] Update index.html --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index 3ad4f84..70daaba 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,7 @@ Web Development +
    From 884e2932019584cc9b8d9fe0206a745cb612e853 Mon Sep 17 00:00:00 2001 From: anish-kmr <41281200+anish-kmr@users.noreply.github.com> Date: Thu, 4 Oct 2018 23:27:22 +0530 Subject: [PATCH 3/7] Update index-style.css --- index-style.css | 65 ++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 61 insertions(+), 4 deletions(-) diff --git a/index-style.css b/index-style.css index 8f8af70..569429f 100644 --- a/index-style.css +++ b/index-style.css @@ -1,15 +1,53 @@ body { - padding: 0; - margin: 0; - font-size: 12px; + padding: 0; + margin: 0; + font-size: 12px; } + +/*========================| BACKGROUND STYLES |========================*/ + +#background-1{ + position: fixed; + height:100%; + width: 100%; + clip-path: polygon(87% 0, 100% 0, 100% 98%, 0 100%, 54% 75%); + background-color:#042d70; +} +#background-2{ + position: fixed; + height:100%; + width: 100%; + clip-path: polygon(67% 80%, 100% 0, 100% 100%, 0% 100%); + background-color:#0d47a5; +} +#background-3{ + position: fixed; + height:100%; + width: 100%; +clip-path: polygon(0 0, 26% 0, 19% 20%, 0 27%); + background-color:#042d70; +} +#background-4{ + position: fixed; + height:100%; + width: 100%; + clip-path: polygon(0 0, 21% 0, 18% 19%, 0 26%); + background-color:#0d47a5; +} + + +/*=========================| List Style And Positioning |=========================*/ + + ol{ position: absolute; width: 100%; + height: 100%; top:50%; transform: translateY(-50%); } ol li{ + position: absolute; list-style-type: none; display: inline-block; text-align: center; @@ -17,17 +55,36 @@ ol li{ margin:auto 2.5%; width:25%; letter-spacing: 8px; + transform: translate(-50%,-50%); background-image:linear-gradient(to bottom,#3c7ee8,#95BEB6); border:2px solid #8eb2ed; + border-radius: 25px; transition: all .5s; } + ol li a{ text-decoration: none; font-weight:bold; padding: 1.5em; font-size: 24px; + color: #dedfe0; +} + +ol li:nth-child(1){ + top:10%; + left:50%; + +} +ol li:nth-child(2){ + top:40%; + left:30%; + +} +ol li:nth-child(3){ + top:70%; + left:15%; } ol li:hover{ - transform: scale(1.2,1.2); + transform:translate(-50%,-50%) scale(1.2,1.2); } From d5d92ddcaf3dd8114f69fddcf3bfad49880ed7db Mon Sep 17 00:00:00 2001 From: anish-kmr <41281200+anish-kmr@users.noreply.github.com> Date: Thu, 4 Oct 2018 23:27:45 +0530 Subject: [PATCH 4/7] Update index.html --- index.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/index.html b/index.html index 70daaba..c68fe7f 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,12 @@ + +
    +
    +
    +
    +
    1. Snake Game
    2. Assignments
    3. From 3277fed234c54152277141de7fe2cfd64a711907 Mon Sep 17 00:00:00 2001 From: anish-kmr <41281200+anish-kmr@users.noreply.github.com> Date: Fri, 5 Oct 2018 15:41:35 +0530 Subject: [PATCH 5/7] Create readme.md --- madz/readme.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 madz/readme.md diff --git a/madz/readme.md b/madz/readme.md new file mode 100644 index 0000000..183c6f5 --- /dev/null +++ b/madz/readme.md @@ -0,0 +1,8 @@ +CALCULATIONS FOR BASIC MATHS PROBLEMS. + +-->Quadratic Equations Roots +-->Matrix Operations +-->Permutations & Combinations +-->Prime Numbers + +NOTE : This website is not responsive for now. From d4fd0475a5eedc259c9c8f61bf1a32b668588f6b Mon Sep 17 00:00:00 2001 From: anish-kmr <41281200+anish-kmr@users.noreply.github.com> Date: Fri, 5 Oct 2018 15:42:17 +0530 Subject: [PATCH 6/7] Add files via upload --- madz/default.html | 45 ++++ madz/fact.html | 182 +++++++++++++ madz/frames.css | 22 ++ madz/home.html | 166 ++++++++++++ madz/io.html | 130 ++++++++++ madz/matrix.html | 641 ++++++++++++++++++++++++++++++++++++++++++++++ madz/prime.html | 219 ++++++++++++++++ madz/quad.html | 130 ++++++++++ madz/style.css | 168 ++++++++++++ 9 files changed, 1703 insertions(+) create mode 100644 madz/default.html create mode 100644 madz/fact.html create mode 100644 madz/frames.css create mode 100644 madz/home.html create mode 100644 madz/io.html create mode 100644 madz/matrix.html create mode 100644 madz/prime.html create mode 100644 madz/quad.html create mode 100644 madz/style.css diff --git a/madz/default.html b/madz/default.html new file mode 100644 index 0000000..6c030bb --- /dev/null +++ b/madz/default.html @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + Calculate + + + +
      +

      MATHS - MADE EAZY


      +
      +


      +
      +
      + +   INFORMATION + +
      + PLEASE SELECT A TOPIC FROM THE DOCK GIVEN BELOW OR SEARCH IT ON THE TOP :-) +
      +
      +
      + + + + + diff --git a/madz/fact.html b/madz/fact.html new file mode 100644 index 0000000..e262380 --- /dev/null +++ b/madz/fact.html @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + + Calculate + + + + + +
      +

      FACTORIAL


      +
      + +
      +
      + +   INFORMATION + +
      + 1.Enter the Numbers(integers) inside given spaces or else the value will be taken as 0. +
      + 2.Press Enter after each input to see expression on output.(Optional). +
      + 3.After passing values, click on Calculate Button to find roots(if they exist). +
      + 4.Press Reset button to clear the fields and reset output box. +
      +
      +
      + + +
      + + +
      +
      +
      +

      INPUT

      + +

      + + +
      + +
      +

      OUTPUT

      +

      + +

      +
      +
      +
      +
      + +
      +
      +

      INPUT

      + +

      P

      + + +

      + + +
      + +
      +

      OUTPUT

      +

      + +

      +
      +
      +
      + + +
      +
      +
      +

      INPUT

      + +

      C

      + + +

      + + +
      + +
      +

      OUTPUT

      +

      + +

      +
      +
      + + + +
      + + +
      + + + +
      + + diff --git a/madz/frames.css b/madz/frames.css new file mode 100644 index 0000000..70d304e --- /dev/null +++ b/madz/frames.css @@ -0,0 +1,22 @@ +header { + height: 5em; + width: 100%; + background-color: #3e095e; + color: white; } + +fieldset.scheduler-border { + border: 2px solid brown !important; + width: inherit; + padding: 30px 60px; + border-bottom: none; + margin: 50px 0px; } + fieldset.scheduler-border legend.scheduler-border { + width: auto !important; + border: none; } + +.ip h2 { + padding: 20px 40px; + margin: 10px 20px; } +.op h2 { + padding: 20px 40px; + margin: 10px 20px; } diff --git a/madz/home.html b/madz/home.html new file mode 100644 index 0000000..936cef0 --- /dev/null +++ b/madz/home.html @@ -0,0 +1,166 @@ + + + + + + + + + + + + + + + + + + + + + + + Document + + + + +
      +
      + + + + + + + + +
      + + + + +

      + +
      + +
      +









      + +
      + + + + + + +
      +
      + + +
      + + + + + + + diff --git a/madz/io.html b/madz/io.html new file mode 100644 index 0000000..890d4b9 --- /dev/null +++ b/madz/io.html @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + Calculate + + + +
      +

      QUADRATIC EQUATIONS


      +
      + +
      +
      + +   INFORMATION + +
      + 1.Enter the Numbers(integers) inside given spaces or else the value will be taken as 0. +
      + 2.Press Enter after each input to see expression on output.(Optional). +
      + 3.After passing values, click on Calculate Button to find roots(if they exist). +
      + 4.Press Reset button to clear the fields and reset output box. +
      +
      +
      + +
      +
      +

      INPUT

      + x 2 + + x + + +

      + + +
      + +
      +

      OUTPUT

      +

      + Quadratic equation : + a x 2 + b x + c = 0 +

      +

      + Determinant of equ. is D = + + +

      +

      + D>=0 , Hence Real Roots Exists .
      + Roots are And +

      +

      + Roots are Imaginary. I am Working On Complex roots :-) +

      +
      +
      + + +
      + + + + diff --git a/madz/matrix.html b/madz/matrix.html new file mode 100644 index 0000000..6d072c9 --- /dev/null +++ b/madz/matrix.html @@ -0,0 +1,641 @@ + + + + + + + + + + + + + + + + + + + + + + + Calculate + + + + + + + +
      +

      MATRIX


      +
      + + + + +
      +
      + +   INFORMATION + +
      + 1.Enter the Numbers(integers) inside given spaces or else the value will be taken as 0. +
      + 2.Press Enter after each input to see expression on output.(Optional). +
      + 3.After passing values, click on Calculate Button to find roots(if they exist). +
      + 4.Press Reset button to clear the fields and reset output box. +
      +
      +
      + + + + +
      + + + +
      +
      +
      + +

      INPUT

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      A =

      [

      ]

      +
      + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      B =

      [

      ]

      +
      + + + + + + +

      + + +
      + +
      +

      OUTPUT

      +
      A + B =
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      [

      ]

      +
      + + + +
      +
      +
      + + + +
      + +
      +
      + +

      INPUT

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      A =

      [

      ]

      +
      + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      B =

      [

      ]

      +
      + + + + + + +

      + + +
      + +
      +

      OUTPUT

      +
      A - B =
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      [

      ]

      +
      + + + +
      +
      +
      + + + +
      +
      +
      + +

      INPUT

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      A =

      [

      ]

      +
      + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      B =

      [

      ]

      +
      + + + + + + +

      + + +
      + +
      +

      OUTPUT

      +
      A x B =
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      [

      ]

      +
      + + + +
      +
      +
      + + + +
      + + + + +
      + + diff --git a/madz/prime.html b/madz/prime.html new file mode 100644 index 0000000..ab12209 --- /dev/null +++ b/madz/prime.html @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + Calculate + + + + + +
      +

      PRIME NUMBERS


      +
      + +
      +
      + +   INFORMATION + +
      + 1.Enter the Numbers(integers) inside given spaces or else the value will be taken as 0. +
      + 2.Press Enter after each input to see expression on output.(Optional). +
      + 3.After passing values, click on Calculate Button to find roots(if they exist). +
      + 4.Press Reset button to clear the fields and reset output box. +
      +
      +
      + + +
      + + +
      +
      +
      +

      INPUT

      + +

      + + +
      + +
      +

      OUTPUT

      +

      + +

      +
      +
      +
      +
      + +
      +
      +

      INPUT

      + + + + +

      + + +
      + +
      +

      OUTPUT

      +

      + +

      +
      +
      +
      + + +
      +
      +
      +

      INPUT

      + + + +

      + + +
      + +
      +

      OUTPUT

      +

      + +

      +
      +
      + + + +
      + + +
      + + + +
      + + diff --git a/madz/quad.html b/madz/quad.html new file mode 100644 index 0000000..a411bb5 --- /dev/null +++ b/madz/quad.html @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + Calculate + + + +
      +

      QUADRATIC EQUATIONS


      +
      + +
      +
      + +   INFORMATION + +
      + 1.Enter the Numbers(integers) inside given spaces or else the value will be taken as 0. +
      + 2.Press Enter after each input to see expression on output.(Optional). +
      + 3.After passing values, click on Calculate Button to find roots(if they exist). +
      + 4.Press Reset button to clear the fields and reset output box. +
      +
      +
      + +
      +
      +

      INPUT

      + x 2 + + x + + +

      + + +
      + +
      +

      OUTPUT

      +

      + Quadratic equation : + a x 2 + b x + c = 0 +

      +

      + Determinant of equ. is D = + + +

      +

      + D>=0 , Hence Real Roots Exists .
      + Roots are And +

      +

      + Roots are Imaginary. I am Working On Complex roots :-) +

      +
      +
      + + +
      + + + + diff --git a/madz/style.css b/madz/style.css new file mode 100644 index 0000000..06e9ec6 --- /dev/null +++ b/madz/style.css @@ -0,0 +1,168 @@ +* { + margin: 0; + padding: 0; } + +body { + overflow-x: hidden; + padding: 0; } + body #header { + z-index: 3; + position: absolute; + color: white; + font-size: 24px; + margin: 0px; + padding: 10px; + height: 5em; + width: 100%; } + @media (max-width: 640px) { + body #header { + display: none; } } + body #header h1 { + display: inline-block; + margin: 5px 0px 10px 10px; } + body #header h1 span { + background-color: black; + padding: 0px 4px; } + body #header p { + display: inline-block; + margin: 0px; + font-size: 16px; } + +.box { + position: absolute; + top: 0; + left: 0; + width: 0px; + height: 0px; + z-index: 2; + border-left: 200px solid #550780; + border-right: 0px solid green; + border-bottom: 280px solid transparent; } + @media (max-width: 640px) { + .box { + display: none; } } + +.tilt { + z-index: 1; + border-left: 300px solid #3e095e; + border-right: 0px solid green; + border-bottom: 220px solid transparent; } + +nav { + margin: 0; + z-index: 4; } + nav .search { + + margin-left: 100px; + padding: 0px; + width: 48%; + display: inline-block; + position: relative; } + nav .search input { + + border: 2px solid black; + padding: 2px; + padding-right: 10px; + border-radius: 10px; } + nav .search button { + border-radius: 0px 10px 10px 0px; + position: absolute; + top: 2px; + right: 0px; + background-color: transparent; } + @media (max-width: 640px) { + nav { + background-color: #007BFF; } } + +ul li a { + color: #550780 !important; + border-radius: 15px; + padding: 10px 20px; + width: 100px; + font-weight: bolder; } + ul li a:hover { + background-color: #3e095e !important; + color: white !important; } + @media (max-width: 640px) { + ul li a { + border-bottom: 1px solid rgba(0, 0, 255, 0.4); + color: #ffffff; + border-radius: 0; + width: auto; } } + +.bg { + height: 40em; + background-image: url("sources\\maths.jpg"); + background-attachment: fixed; + background-size: cover; + background-repeat: no-repeat; } + +.viewport { + height: 200px; + background-color: rgba(0, 0, 255, 0.4); + position: relative; + perspective: 1000px; } + .viewport .rack { + background-color: rgba(105, 109, 110, 0.76); + width: 90%; + height: 200px; + margin: 50px 5%; + box-shadow: 0 10px 40px #303030; + transform: rotateX(60deg); } + .viewport a:nth-child(1) img { + position: absolute; + top: -60px; + left: 5%; + width: 13%; + height: 170px; + z-index: 5; + -webkit-box-reflect: below -8px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, transparent), to(rgba(250, 250, 250, 0.3))); + transition: all 0.4s ease-out; + -webkit-box-reflect: below -32px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, transparent), to(rgba(250, 250, 250, 0.3))); + width: 15%; } + .viewport a:nth-child(1) img:hover { + transform: scale(1.5, 1.5); } + .viewport a:nth-child(2) img { + position: absolute; + top: -60px; + left: 23%; + width: 13%; + height: 170px; + z-index: 5; + -webkit-box-reflect: below -8px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, transparent), to(rgba(250, 250, 250, 0.3))); + transition: all 0.4s ease-out; } + .viewport a:nth-child(2) img:hover { + transform: scale(1.5, 1.5); } + .viewport a:nth-child(3) img { + position: absolute; + top: -60px; + left: 40%; + width: 13%; + height: 170px; + z-index: 5; + -webkit-box-reflect: below -8px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, transparent), to(rgba(250, 250, 250, 0.3))); + transition: all 0.4s ease-out; } + .viewport a:nth-child(3) img:hover { + transform: scale(1.5, 1.5); } + .viewport a:nth-child(4) img { + position: absolute; + top: -60px; + left: 60%; + width: 13%; + height: 170px; + z-index: 5; + -webkit-box-reflect: below -8px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, transparent), to(rgba(250, 250, 250, 0.3))); + transition: all 0.4s ease-out; } + .viewport a:nth-child(4) img:hover { + transform: scale(1.5, 1.5); } + .viewport a:nth-child(5) img { + position: absolute; + top: -60px; + left: 77%; + width: 13%; + height: 170px; + z-index: 5; + -webkit-box-reflect: below -8px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, transparent), to(rgba(250, 250, 250, 0.3))); + transition: all 0.4s ease-out; } + .viewport a:nth-child(5) img:hover { + transform: scale(1.5, 1.5); } From fd2c91799151427a0a26f310f9f1a0199ed1bce5 Mon Sep 17 00:00:00 2001 From: anish-kmr <41281200+anish-kmr@users.noreply.github.com> Date: Fri, 5 Oct 2018 15:42:55 +0530 Subject: [PATCH 7/7] Update index.html --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index c68fe7f..d080463 100644 --- a/index.html +++ b/index.html @@ -9,9 +9,10 @@
      - +
      1. Snake Game
      2. +
      3. Basic Maths
      4. Assignments
      5. Design_Style