From fef2c11e4ab82dda6769bd28d4ce95b43084fa57 Mon Sep 17 00:00:00 2001 From: Rohan Verma Date: Fri, 22 Feb 2019 18:56:10 +0530 Subject: [PATCH] feat: redesign --- .WP2Static/5c6fd60de0e6e | 1 - assets/css/main.css | 53 +++++--------------------------------- components/ContactCard.vue | 6 ++--- components/HomeMessage.vue | 23 +++++++++++++++++ components/ProfileList.vue | 12 ++++----- components/ProjectList.vue | 4 +-- nuxt.config.js | 3 ++- pages/index.vue | 15 +++++++---- tailwind.config.js | 1 + 9 files changed, 53 insertions(+), 65 deletions(-) delete mode 100644 .WP2Static/5c6fd60de0e6e create mode 100644 components/HomeMessage.vue diff --git a/.WP2Static/5c6fd60de0e6e b/.WP2Static/5c6fd60de0e6e deleted file mode 100644 index 6fa7f4d..0000000 --- a/.WP2Static/5c6fd60de0e6e +++ /dev/null @@ -1 +0,0 @@ -WP2Static test upload \ No newline at end of file diff --git a/assets/css/main.css b/assets/css/main.css index 36ca5fc..8d197fe 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -12,60 +12,19 @@ html { } body { - background: linear-gradient(270deg, #00b7af, #3c67bd, #5d88df); - background-size: 600% 600%; + background-color: #fafafa; - -webkit-animation: Gradient 15s ease infinite; - -moz-animation: Gradient 15s ease infinite; - animation: Gradient 15s ease infinite; min-height: 100%; } -@-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% - } -} - - .btn { - @apply text-xs font-semibold rounded-full px-4 py-1 leading-normal bg-white border border-indigo text-indigo; + @apply text-xs font-semibold rounded-full px-4 py-1 leading-normal bg-white border border-black text-black; } -.btn-indigo { - @apply bg-white text-indigo; +.btn-black { + @apply bg-white text-black; } -.btn-indigo:hover { - @apply bg-indigo text-white; +.btn-black:hover { + @apply bg-black text-white; } /* Temporary fix for https://github.com/vaso2/nuxt-fontawesome/issues/9 */ diff --git a/components/ContactCard.vue b/components/ContactCard.vue index 8c8768e..d8f175f 100644 --- a/components/ContactCard.vue +++ b/components/ContactCard.vue @@ -1,13 +1,13 @@