From d4c4e5130e1a9ef0c284dc93a1875321724b41d9 Mon Sep 17 00:00:00 2001 From: Akhil <31166322+akhil-mhdh@users.noreply.github.com> Date: Sat, 9 Sep 2017 12:28:08 +0530 Subject: [PATCH 1/8] Delete beauty.css --- Scripts/css/beauty.css | 219 ----------------------------------------- 1 file changed, 219 deletions(-) delete mode 100644 Scripts/css/beauty.css diff --git a/Scripts/css/beauty.css b/Scripts/css/beauty.css deleted file mode 100644 index 743c4e2..0000000 --- a/Scripts/css/beauty.css +++ /dev/null @@ -1,219 +0,0 @@ -html,body -{ - width: 100%; - height: 100%; - margin:0px; - padding:0px; - overflow-x: hidden; - background-color: #191919; -} -/*This set consist of all the css part of the HackerRIT Menu Bar for login*/ -.navbar .container-fluid .navbar-header .navbar-toggle { - background-color:#59B1E0; -} -.navbar-toggle .icon-bar{ - background-color:white; -} -.logo{ - width: 40px; - height: 40px; - border-radius: 50%; - position:relative; - right:5px; -} -.logoTitle{ - font-size:30px; - position:relative; - top:5px; - left:5px; - font-family: Georgia; - color: #2B4156; -} -a{ - cursor:pointer; -} -.key{ - display: inline-block; - border:none; - height:60px; - width:100%; - margin-right:30px; - background-color: white; - font-size:25px; - color:#59b1e0; - transition: .5s; - -} - -.signup { - display: inline-block; - border:none; - height:60px; - width:100%; - font-size: 25px; - background-color:#59b1e0; - color:white; - transition: .5s; - -} -.glyphicon-user{ - font-size: 20px; -} -.key:hover{ - background-color: #eaf3f7; -} -.signup:hover{ - background-color: #52a3ce; -} -@media screen and (max-width: 768px) { - .key{ - border:solid; - border-width:1px 0 0 0; - border-color: #59B1E0; - } -} - /*-----------------------------------------------------------------------------------*/ -.parallax{ - background-image: url("http://codingbasics.net/wp-content/uploads/2014/04/computer-programming.jpeg"); - opacity:.9; - height: 75%; - width:100vw; - background-attachment: fixed; - background-repeat: no-repeat; - background-size: cover; -} -.kword{ - background-color: #191919; - font-size:40px; - text-align:center; - color: #66FCF1; - font-family:sans sherif; -} -.about{ - color:white; - max-width:80%; - font-size:20px; - border:double; - border-color: #66FCF1; - background-color: #191919; - padding: 20px 5px 20px 10px; - margin:10px auto 10px auto; - border-radius:10px; -} -.btn-danger{ - position:relative; - right:15px; - } -.btn-info{ - position:relative; - left:15px; - } -@media screen and (max-width: 450px) { - .kword{ - font-size:30px; - } - .btn-danger{ - position:relative; - right:0px; - } - } - - /*---------------------------------------*/ - -.images {display:none} - - -.gallery { - max-width: 900px; - position: relative; - margin: auto; - margin-top:50px; -} - -.images img{ - max-height:500px; - border-radius:15px; - -} - -.prev, .next { - cursor: pointer; - position: absolute; - top: 50%; - width: auto; - padding: 10px; - color: white; - font-size: 25px; - transition: 0.6s ease; - border-radius: 0 3px 3px 0; -} - -.next { - right: 0; - border-radius: 3px 0 0 3px; -} - -.prev:hover, .next:hover { - background-color: rgba(0,0,0,0.8); -} - - -.text { - color: #f2f2f2; - font-size: 15px; - padding: 8px 12px; - position: absolute; - bottom: 0px; - width: 100%; - text-align: center; - background-color:rgba(72, 72, 73,0.8); - border-bottom-right-radius:15px; - border-bottom-left-radius:15px; -} -.dot { - cursor:pointer; - height: 10px; - width: 10px; - margin: 0 2px; - background-color: #bbb; - border-radius: 50%; - display: inline-block; - transition: background-color 0.6s ease; -} - -.active, .dot:hover { - background-color: #717171; -} - - -.fade { - -webkit-animation-name: fade; - -webkit-animation-duration: 1.5s; - animation-name: fade; - animation-duration: 1.5s; - animation-fill-mode:forwards; -} - -@-webkit-keyframes fade { - from {opacity: .4} - to {opacity: 1} -} - -@keyframes fade { - from {opacity: .4} - to {opacity: 1} -} - -@media only screen and (max-width: 300px) { - .prev, .next,.text {font-size: 15px;} -} -hr{ - width:80%; -} -.sites{ - margin:auto; -} -.sites a{ - margin:5px 10px 5px 10px; -} - From f46654ead312657732f3463dfcafe7c9a505f42e Mon Sep 17 00:00:00 2001 From: Akhil <31166322+akhil-mhdh@users.noreply.github.com> Date: Sat, 9 Sep 2017 12:28:31 +0530 Subject: [PATCH 2/8] Delete functions.js --- Scripts/js/functions.js | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 Scripts/js/functions.js diff --git a/Scripts/js/functions.js b/Scripts/js/functions.js deleted file mode 100644 index ae244bf..0000000 --- a/Scripts/js/functions.js +++ /dev/null @@ -1,32 +0,0 @@ - -function showImg(n) { - var i; - var imgs = document.getElementsByClassName("images"); - console.log(imgs.length) - var dots = document.getElementsByClassName("dot"); - if (n > imgs.length) {index = 1;} - if (n < 1) {index = imgs.length} - for (i = 0; i < imgs.length; i++) { - imgs[i].style.display = "none"; - } - for (i = 0; i < dots.length; i++) { - dots[i].className = dots[i].className.replace(" active", ""); - } - imgs[index-1].style.display = "block"; - dots[index-1].className += " active"; -} -var index = 1; -showImg(index); - -function imgPos(n) { - showImg(index += n); -} - -function currentImg(n) { - showImg(index=n) -} - - - - - From 5ebbd68510e71322023d8d96b31f29dc54649e1a Mon Sep 17 00:00:00 2001 From: Akhil <31166322+akhil-mhdh@users.noreply.github.com> Date: Sat, 9 Sep 2017 12:28:55 +0530 Subject: [PATCH 3/8] Delete index.html --- index.html | 86 ------------------------------------------------------ 1 file changed, 86 deletions(-) delete mode 100644 index.html diff --git a/index.html b/index.html deleted file mode 100644 index 5576cba..0000000 --- a/index.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - HackerRIT - - - - - - - - - - - - - -
-
-
#whatsYourLANGUAGE
-
- HackerRIT is platform developed by a team of developers and designers from Rajiv Gandhi Institute of Technology, Kottayam.Its where we practice,clash and win to be at the top. -
So Are You Ready To Take The Challenge Or Give The Challenge -
Join A Challenge
-
- - - -
- -
- - - -
- -
-
-

Contact Us Via

- - - -
-
- From 738ed69b2f748759995595596b71c735c65596ce Mon Sep 17 00:00:00 2001 From: Akhil <31166322+akhil-mhdh@users.noreply.github.com> Date: Sat, 9 Sep 2017 12:29:44 +0530 Subject: [PATCH 4/8] html part of the updated one --- index.html | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..48895a4 --- /dev/null +++ b/index.html @@ -0,0 +1,86 @@ + + + + + HackerRIT + + + + + + + + + + + + + +
+
+
#whatsYourLANGUAGE
+
+ HackerRIT is platform developed by a team of developers and designers from Rajiv Gandhi Institute of Technology, Kottayam.Its where we practice,clash and win to be at the top. +
So Are You Ready To Take The Challenge Or Give The Challenge +
Join A Challenge
+
+ + + +
+ +
+ + + +
+ +
+
+

Contact Us Via

+ + + +
+
+ \ No newline at end of file From 7b2835a6898df1c8385af926f1fd94a043663e3f Mon Sep 17 00:00:00 2001 From: Akhil <31166322+akhil-mhdh@users.noreply.github.com> Date: Sat, 9 Sep 2017 12:30:28 +0530 Subject: [PATCH 5/8] Css part of the intro --- Scripts/css/beauty.css | 218 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 218 insertions(+) create mode 100644 Scripts/css/beauty.css diff --git a/Scripts/css/beauty.css b/Scripts/css/beauty.css new file mode 100644 index 0000000..c4fed60 --- /dev/null +++ b/Scripts/css/beauty.css @@ -0,0 +1,218 @@ +html,body +{ + width: 100%; + height: 100%; + margin:0px; + padding:0px; + overflow-x: hidden; + background-color: #191919; +} +/*This set consist of all the css part of the HackerRIT Menu Bar for login*/ +.navbar .container-fluid .navbar-header .navbar-toggle { + background-color:#59B1E0; +} +.navbar-toggle .icon-bar{ + background-color:white; +} +.logo{ + width: 40px; + height: 40px; + border-radius: 50%; + position:relative; + right:5px; +} +.logoTitle{ + font-size:30px; + position:relative; + top:5px; + left:5px; + font-family: Georgia; + color: #2B4156; +} +a{ + cursor:pointer; +} +.key{ + display: inline-block; + border:none; + height:60px; + width:100%; + margin-right:30px; + background-color: white; + font-size:25px; + color:#59b1e0; + transition: .5s; + +} + +.signup { + display: inline-block; + border:none; + height:60px; + width:100%; + font-size: 25px; + background-color:#59b1e0; + color:white; + transition: .5s; + +} +.glyphicon-user{ + font-size: 20px; +} +.key:hover{ + background-color: #eaf3f7; +} +.signup:hover{ + background-color: #52a3ce; +} +@media screen and (max-width: 768px) { + .key{ + border:solid; + border-width:1px 0 0 0; + border-color: #59B1E0; + } +} + /*-----------------------------------------------------------------------------------*/ +.parallax{ + background-image: url("http://codingbasics.net/wp-content/uploads/2014/04/computer-programming.jpeg"); + opacity:.9; + height: 75%; + width:100vw; + background-attachment: fixed; + background-repeat: no-repeat; + background-size: cover; +} +.kword{ + background-color: #191919; + font-size:40px; + text-align:center; + color: #66FCF1; + font-family:sans sherif; +} +.about{ + color:white; + max-width:80%; + font-size:20px; + border:double; + border-color: #66FCF1; + background-color: #191919; + padding: 20px 5px 20px 10px; + margin:10px auto 10px auto; + border-radius:10px; +} +.btn-danger{ + position:relative; + right:15px; + } +.btn-info{ + position:relative; + left:15px; + } +@media screen and (max-width: 450px) { + .kword{ + font-size:30px; + } + .btn-danger{ + position:relative; + right:0px; + } + } + + /*---------------------------------------*/ + +.images {display:none} + + +.gallery { + max-width: 900px; + position: relative; + margin: auto; + margin-top:50px; +} + +.images img{ + max-height:500px; + border-radius:15px; + +} + +.prev, .next { + cursor: pointer; + position: absolute; + top: 50%; + width: auto; + padding: 10px; + color: white; + font-size: 25px; + transition: 0.6s ease; + border-radius: 0 3px 3px 0; +} + +.next { + right: 0; + border-radius: 3px 0 0 3px; +} + +.prev:hover, .next:hover { + background-color: rgba(0,0,0,0.8); +} + + +.text { + color: #f2f2f2; + font-size: 15px; + padding: 8px 12px; + position: absolute; + bottom: 0px; + width: 100%; + text-align: center; + background-color:rgba(72, 72, 73,0.8); + border-bottom-right-radius:15px; + border-bottom-left-radius:15px; +} +.dot { + cursor:pointer; + height: 10px; + width: 10px; + margin: 0 2px; + background-color: #bbb; + border-radius: 50%; + display: inline-block; + transition: background-color 0.6s ease; +} + +.active, .dot:hover { + background-color: #717171; +} + + +.fade { + -webkit-animation-name: fade; + -webkit-animation-duration: 1.5s; + animation-name: fade; + animation-duration: 1.5s; + animation-fill-mode:forwards; +} + +@-webkit-keyframes fade { + from {opacity: .4} + to {opacity: 1} +} + +@keyframes fade { + from {opacity: .4} + to {opacity: 1} +} + +@media only screen and (max-width: 300px) { + .prev, .next,.text {font-size: 15px;} +} +hr{ + width:80%; +} +.sites{ + margin:auto; +} +.sites a{ + margin:5px 10px 5px 10px; +} From d92268350db31b89d063ab43ff794555399d6530 Mon Sep 17 00:00:00 2001 From: Akhil <31166322+akhil-mhdh@users.noreply.github.com> Date: Sat, 9 Sep 2017 12:32:02 +0530 Subject: [PATCH 6/8] Js of intro --- Scripts/js/functions.js | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Scripts/js/functions.js diff --git a/Scripts/js/functions.js b/Scripts/js/functions.js new file mode 100644 index 0000000..ae244bf --- /dev/null +++ b/Scripts/js/functions.js @@ -0,0 +1,32 @@ + +function showImg(n) { + var i; + var imgs = document.getElementsByClassName("images"); + console.log(imgs.length) + var dots = document.getElementsByClassName("dot"); + if (n > imgs.length) {index = 1;} + if (n < 1) {index = imgs.length} + for (i = 0; i < imgs.length; i++) { + imgs[i].style.display = "none"; + } + for (i = 0; i < dots.length; i++) { + dots[i].className = dots[i].className.replace(" active", ""); + } + imgs[index-1].style.display = "block"; + dots[index-1].className += " active"; +} +var index = 1; +showImg(index); + +function imgPos(n) { + showImg(index += n); +} + +function currentImg(n) { + showImg(index=n) +} + + + + + From aaa9599c8c4c5693a7123f46c3dec2576d869f4a Mon Sep 17 00:00:00 2001 From: Akhil <31166322+akhil-mhdh@users.noreply.github.com> Date: Sat, 9 Sep 2017 12:33:29 +0530 Subject: [PATCH 7/8] Update index.html --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 48895a4..dd80e00 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,13 @@ - + HackerRIT - + @@ -83,4 +83,4 @@

Contact Us Via

- \ No newline at end of file + From 0f7e19c4b3db23fd56337592d41b41fedd443d8c Mon Sep 17 00:00:00 2001 From: Akhil <31166322+akhil-mhdh@users.noreply.github.com> Date: Sun, 10 Sep 2017 14:24:55 +0530 Subject: [PATCH 8/8] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 0e846cb..ef96e46 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # HackerRIT Open Source Online Codeing Contest Platform +Failed project from my part and my first project in github. +T-T