Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added my portfolio #48

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
346 changes: 346 additions & 0 deletions Hrushikesh Das/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,346 @@
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap");

* {
font-family: "Source Code Pro", monospace;
}

h1,
h2,
h3,
h4,
h5,
h6 {
color: #222222;
line-height: 1.2em;
margin-bottom: 0;
margin-top: 0;
font-weight: 600;
}
@media (max-width: 565px) {
.section-heading {
font-size: 40px !important;
}
}
html {
scroll-behavior: smooth;
}
body {
color: #777777;
font-family: "Roboto", sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 1.625em;
position: relative;
}

.nav-link {
font-size: 25px;
}

p {
text-align: justify;
text-justify: inter-word;
}

.container {
overflow: auto;
}

.vertical-center {
min-height: 100%; /* Fallback for browsers do NOT support vh unit */
min-height: 100vh; /* These two lines are counted as one :-) */

display: flex;
align-items: center;
}

.link {
text-decoration: none;
color: #007bff;
transition: all 0.3s;
}
.link:hover {
text-decoration: none;
color: #111;
transition: all 0.3s;
}
.social-links li {
list-style: none;
display: inline-block;
}
.social-links li a {
height: 50px;
width: 50px;
display: block;
float: left;
background: rgba(255, 255, 255, 0.05);
border-radius: 50%;
position: relative;
}
.social-links li a ion-icon {
position: absolute;
font-size: 26px;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
transition: all 0.3s;
}
.social-links li a:hover {
color: #111;
transition: all 0.3s;
}

.tech-icon {
height: 20px;
}

.wrap {
padding: 0;
}
@media (max-width: 767.98px) {
.wrap {
margin-top: 40px;
}
}
@media (min-width: 768px) {
.wrap .about-desc {
position: relative;
}
}
.wrap .about-desc .bold-text {
position: absolute;
top: -80px;
left: 10px;
right: 0;
bottom: 0;
font-weight: 700 !important;
color: rgba(0, 0, 0, 0.08);
text-transform: uppercase;
}
@media (min-width: 992px) {
.wrap .about-desc .bold-text {
font-size: 6em;
}
}
@media (max-width: 991px) {
.wrap .about-desc .bold-text {
display: none;
}
}

.progress-style {
width: 400px;
}
@media (max-width: 412px) {
.progress-style {
width: 300px;
}
}
.interests .icon-box {
display: flex;
align-items: center;
padding: 20px;
background: rgba(255, 255, 255, 0.08);
transition: ease-in-out 0.3s;
}

.interests .icon-box i {
font-size: 32px;
padding-right: 10px;
line-height: 1;
}

.interests .icon-box h3 {
font-weight: 300;
margin: 0;
padding: 0;
padding-left: 0.5rem;
line-height: 1;
font-size: 20px;
color: #111;
}

.interests .icon-box:hover {
background: rgba(122, 122, 122, 0.12);
}

.bg-text {
position: absolute;
margin-bottom: -1em;
top: -80px;
left: 10px;
right: 0;
bottom: 0;
font-weight: 700 !important;
color: rgba(0, 0, 0, 0.08);
text-transform: uppercase;
}
@media (min-width: 992px) {
.bg-text {
font-size: 6em;
}
}
@media (max-width: 991.98px) {
.bg-text {
display: none;
}
}
@media (max-width: 767.98px) {
.bg-text {
display: none;
}
}
@media (min-width: 768px) {
.bg-text {
position: relative;
}
}
.profile-text {
font-weight: 300;
}
@media (max-width: 768px) {
.profile-text {
font-size: 20px !important;
}
}

@media (min-width: 768px) {
.blog-entry {
margin-bottom: 30px;
}
}

@media (max-width: 767.98px) {
.blog-entry {
margin-bottom: 30px;
}
}

.blog-entry .text {
position: relative;
border-top: 0;
border-radius: 2px;
}
.blog-entry .text .heading {
font-size: 20px;
margin-bottom: 16px;
font-weight: 500;
}
.blog-entry .text .heading a {
color: #111;
}
.blog-entry .text .heading a:hover,
.blog-entry .text .heading a:focus,
.blog-entry .text .heading a:active {
color: #2f89fc;
}

.blog-entry .meta > div {
display: inline-block;
margin-right: 5px;
margin-bottom: 5px;
font-size: 15px;
}
.blog-entry .meta > div a {
font-size: 15px;
color: #8c8c8c;
}

#preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 9999;
overflow: hidden;
background: #fff;
}

#preloader:before {
content: "";
position: fixed;
top: calc(50% - 30px);
left: calc(50% - 30px);
border: 6px solid #f2f2f2;
border-top: 6px solid #007bff;
border-radius: 50%;
width: 60px;
height: 60px;
-webkit-animation: animate-preloader 1s linear infinite;
animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}

@keyframes animate-preloader {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}

.button {
display: inline-block;
padding: 0.3rem 0.6rem;
text-align: center;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
font-size: 1rem;
border-radius: 0.3rem;
border: 1px solid transparent;
transition: all 500ms ease;
cursor: pointer;
}

.button:focus {
outline: 0;
}

.button:hover {
background-color: #1c81c4;
color: #fff;
transition: all 500ms ease;
}

.button-a {
background-color: #48abec;
color: #fff;
border-color: #d7ebf5;
}

.button-big {
padding: 0.9rem 2.3rem;
font-size: 1.2rem;
}

.button-rouded {
border-radius: 5rem;
}

.btn-lg {
padding: 0.5rem 1rem;
font-size: 1.25rem;
line-height: 1.5;
border-radius: 0.3rem;
}
Binary file added Hrushikesh Das/images/favicon.ico
Binary file not shown.
Binary file added Hrushikesh Das/images/git_vs_github.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Hrushikesh Das/images/icons/cpp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Hrushikesh Das/images/icons/dart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Hrushikesh Das/images/icons/db.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Hrushikesh Das/images/icons/flutter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Hrushikesh Das/images/icons/heroku.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Hrushikesh Das/images/icons/java.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Hrushikesh Das/images/icons/js.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Hrushikesh Das/images/icons/node.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Hrushikesh Das/images/icons/php.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Hrushikesh Das/images/icons/python.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Hrushikesh Das/images/icons/react.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Hrushikesh Das/images/icons/ts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Hrushikesh Das/images/js.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading