[gtk-web/new-website: 42/180] enhancing the pipelines



commit 987d394e1cc21c76310d86f10b2584825fb0a3b8
Author: ravgeetdhillon <ravgeetdhillon gmail com>
Date:   Thu May 30 18:55:34 2019 +0530

    enhancing the pipelines

 .gitignore           |   6 +-
 assets/css/index.css | 166 +++++++++++++++++++++++++++++++++++++++++++++++++++
 server.bat           |   3 +
 3 files changed, 170 insertions(+), 5 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 7547b25..64af247 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,7 +1,3 @@
 _site
 .sass-cache
-.jekyll-metadata
-documents/
-node_modules/
-assets/
-*.bat
\ No newline at end of file
+.jekyll-metadata
\ No newline at end of file
diff --git a/assets/css/index.css b/assets/css/index.css
new file mode 100644
index 0000000..6c84739
--- /dev/null
+++ b/assets/css/index.css
@@ -0,0 +1,166 @@
+@media (min-width: 576px) {
+    .w-sm-25 {
+        width: 25% !important;
+    }
+    .w-sm-50 {
+        width: 50% !important;
+    }
+    .w-sm-75 {
+        width: 75% !important;
+    }
+    .w-sm-100 {
+        width: 100% !important;
+    }
+    .w-sm-auto {
+        width: auto !important;
+    }
+    .h-sm-25 {
+        height: 25% !important;
+    }
+    .h-sm-50 {
+        height: 50% !important;
+    }
+    .h-sm-75 {
+        height: 75% !important;
+    }
+    .h-sm-100 {
+        height: 100% !important;
+    }
+    .h-sm-auto {
+        height: auto !important;
+    }
+    .landing-sm {
+        min-height: 70vh;
+    }
+}
+@media (min-width: 768px) {
+    .w-md-25 {
+        width: 25% !important;
+    }
+    .w-md-50 {
+        width: 50% !important;
+    }
+    .w-md-75 {
+        width: 75% !important;
+    }
+    .w-md-100 {
+        width: 100% !important;
+    }
+    .w-md-auto {
+        width: auto !important;
+    }
+    .h-md-25 {
+        height: 25% !important;
+    }
+    .h-md-50 {
+        height: 50% !important;
+    }
+    .h-md-75 {
+        height: 75% !important;
+    }
+    .h-md-100 {
+        height: 100% !important;
+    }
+    .h-md-auto {
+        height: auto !important;
+    }
+}
+@media (min-width: 992px) {
+    .w-lg-25 {
+        width: 25% !important;
+    }
+    .w-lg-50 {
+        width: 50% !important;
+    }
+    .w-lg-75 {
+        width: 75% !important;
+    }
+    .w-lg-100 {
+        width: 100% !important;
+    }
+    .w-lg-auto {
+        width: auto !important;
+    }
+    .h-lg-25 {
+        height: 25% !important;
+    }
+    .h-lg-50 {
+        height: 50% !important;
+    }
+    .h-lg-75 {
+        height: 75% !important;
+    }
+    .h-lg-100 {
+        height: 100% !important;
+    }
+    .h-lg-auto {
+        height: auto !important;
+    }
+}
+@media (min-width: 1200px) {
+    .w-xl-25 {
+        width: 25% !important;
+    }
+    .w-xl-50 {
+        width: 50% !important;
+    }
+    .w-xl-75 {
+        width: 75% !important;
+    }
+    .w-xl-100 {
+        width: 100% !important;
+    }
+    .w-xl-auto {
+        width: auto !important;
+    }
+    .h-xl-25 {
+        height: 25% !important;
+    }
+    .h-xl-50 {
+        height: 50% !important;
+    }
+    .h-xl-75 {
+        height: 75% !important;
+    }
+    .h-xl-100 {
+        height: 100% !important;
+    }
+    .h-xl-auto {
+        height: auto !important;
+    }
+}
+code {
+    white-space: pre-line;
+}
+.app-icon {
+    max-width: 120px;
+}
+.app-holder > img {
+    transition: 0.15s ease-in-out;
+}
+.app-holder:hover > img {
+    transform: scale(1.05);
+}
+.op-5 {
+    opacity: 0.5;
+}
+.op-7 {
+    opacity: 0.75;
+}
+.border-bottom-trans {
+    border-bottom: 1px solid transparent !important;
+}
+.border-bottom-hover:hover {
+    border-bottom: 1px solid #dee2e6 !important;
+}
+.shadow-hover:hover {
+    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important
+}
+.img-shadow {
+    box-shadow: 0 1rem 2rem -1rem rgba(33, 37, 41, 1) !important;
+    -webkit-box-shadow: 0 1rem 2rem -1rem rgba(33, 37, 41, 1) !important;
+    -moz-box-shadow: 0 1rem 2rem -1rem rgba(33, 37, 41, 1) !important;
+}
+#apps {
+    background: linear-gradient(#f8f9fa, #ffffff);
+}
\ No newline at end of file
diff --git a/server.bat b/server.bat
new file mode 100644
index 0000000..e68144b
--- /dev/null
+++ b/server.bat
@@ -0,0 +1,3 @@
+@echo off
+
+bundle install & npm install & move /Y node_modules/bootstrap assets/ & move /Y node_modules/jquery assets/ 
& move /Y node_modules/popper.js assets/ & rmdir node_modules /S /Q & sass assets/scss/theme.scss 
assets/css/theme.css


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]