From 908444801fcc4299afbb4e919043d6b4ee7b2922 Mon Sep 17 00:00:00 2001 From: Rohan Verma Date: Sat, 28 Oct 2017 13:07:38 +0530 Subject: [PATCH] Initial Commit --- .gitignore | 1 + bower.json | 17 ++++++++++ css/style.css | 51 +++++++++++++++++++++++++++++ index.html | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 158 insertions(+) create mode 100644 .gitignore create mode 100644 bower.json create mode 100644 css/style.css create mode 100644 index.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7559d42 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +bower_components/ \ No newline at end of file diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..fdee0c9 --- /dev/null +++ b/bower.json @@ -0,0 +1,17 @@ +{ + "name": "rohanverma.net", + "homepage": "https://github.com/rhnvrm/rohanverma.net", + "authors": [ + "Rohan Verma " + ], + "description": "My Website", + "main": "index.html", + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ] +} diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..86d78b1 --- /dev/null +++ b/css/style.css @@ -0,0 +1,51 @@ +body{ + background: linear-gradient(270deg, #00b7af, #3c67bd, #5d88df); + background-size: 600% 600%; + + -webkit-animation: Gradient 15s ease infinite; + -moz-animation: Gradient 15s ease infinite; + animation: Gradient 15s ease infinite; + +} + +@-webkit-keyframes Gradient { + 0% { + background-position: 0% 50% + } + 50% { + background-position: 100% 50% + } + 100% { + background-position: 0% 50% + } +} + +@-moz-keyframes Gradient { + 0% { + background-position: 0% 50% + } + 50% { + background-position: 100% 50% + } + 100% { + background-position: 0% 50% + } +} + +@keyframes Gradient { + 0% { + background-position: 0% 50% + } + 50% { + background-position: 100% 50% + } + 100% { + background-position: 0% 50% + } +} + +.pmd-card-my{ + width: 360px; + margin: 0 auto; + margin-top: 25px; +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..1bd81fe --- /dev/null +++ b/index.html @@ -0,0 +1,89 @@ + + + + + + + + Rohan Verma + + + + + + + + + + + + + + + + + + +
+ +
+ + +
+
+ +
+
+ + +
+

Rohan Verma

+

Computer Science and Engineering Undergrad (Graduating 2018)

+
+ +
+ +
+ + +
+
+ +
    +
  • + + My Blog +
  • +
  • + +
    My Projects
    +
  • +
  • + +
    LinkedIn
    +
  • +
  • + +
    GitHub
    +
  • +
  • + +
    Twitter
    +
  • +
+
+
+ + + + + + + + + + + + + + \ No newline at end of file