Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rifzkhy committed Aug 27, 2023
1 parent 740492b commit 2f95d7b
Show file tree
Hide file tree
Showing 12 changed files with 554 additions and 238 deletions.
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"better-comments.highlightPlainText": true
"better-comments.highlightPlainText": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.formatOnSaveMode": "modifications"
}
39 changes: 17 additions & 22 deletions css/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,40 +43,35 @@ section {
}

/* TODO: Loading animation */
/* Center the loader */
#loader {
position: absolute;
left: 50%;
top: 50%;
z-index: 1;
width: 120px;
height: 120px;
margin: -76px 0 0 -76px;
border: 16px solid #f3f3f3;
border: 12px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
border-top: 12px solid #444444;
width: 70px;
height: 70px;
animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
.center {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}

@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}

.loaders {
background-color: red;
color: blue;
}

/* Add animation to "page content" */
.animate-bottom {
position: relative;
Expand Down
103 changes: 88 additions & 15 deletions css/profile.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,40 @@
transform-style: preserve-3d;
}

.about .card .profile-pics {
.about .card .profile-pics-ascii {
position: absolute;
top: 20px;
left: 18px;
max-width: 250px;
transform: translateZ(20px);
border-radius: 5px;
transition: 0.5s;
opacity: 1;
}
.about .card:hover .profile-pics-ascii {
position: absolute;
top: 20px;
left: 20px;
max-width: 100px;
opacity: 0;
}

.about .card .profile-pics {
position: absolute;
top: 20px;
left: 18px;
max-width: 250px;
transform: translateZ(19px);
border-radius: 5px;
transition: 0.5s;
opacity: 0;
}
.about .card:hover .profile-pics {
position: absolute;
top: 20px;
left: 20px;
max-width: 100px;
opacity: 1;
}

.about .card .card-body {
Expand All @@ -41,11 +60,12 @@
}
.about .card:hover .profile {
transform: translateY(55px);
background-color: #00579f;
}

.about .card .email {
transform: translateZ(20px);
transition: all ease-in-out 2s;
transition: all ease-in-out 0.5s;
opacity: 1;
}
.about .card:hover .email {
Expand All @@ -72,7 +92,7 @@
}

.about .card:hover .signature {
animation: sign 4s ease;
animation: sign 4s infinite;
animation-fill-mode: forwards;
}

Expand Down Expand Up @@ -102,35 +122,88 @@
transform: translateZ(20px);
transform: rotate(90deg);
transition: all ease-in-out 0.5s;
opacity: 0;
}

.about .card:hover .card-icon img {
right: 0;
opacity: 1;
}

/* TODO: Education */
.education img {
border-radius: 10px;
border-radius: 5px;
}

/* TODO: Experience */
.experience ul.timeline {
list-style-type: none;
position: relative;
}
.experience ul.timeline:before {
content: ' ';
background: #FEB252;
display: inline-block;
position: absolute;
left: 29px;
width: 2px;
height: 0%;
z-index: 400;
}
.experience-animate ul.timeline:before {
animation: timeline 16s ease-in-out both;
}
@keyframes timeline {
0% {
height: 0%;
}
100% {
height: 96%;
}
}
.experience ul.timeline > li {
margin: 20px 0;
padding-left: 20px;
}
.experience ul.timeline > li:before {
content: ' ';
background: #101010;
display: inline-block;
position: absolute;
border-radius: 50%;
border: 3px solid #FEB252;
left: 20px;
width: 20px;
height: 20px;
z-index: 405;
}

/* TODO: Skill */
.skill .col img {
width: 50px;
.skill .myProgress {
margin-top: 10px;
width: 100%;
background-color: #e3e3e3;
border-radius: 5px;
}

.skill .col p {
padding-top: 10px;
transform: translateY(-10px);
transition: all ease-in-out 0.5s;
opacity: 0;
.skill .myBardesign,
.skill .myBarprogramming {
padding: 10px;
width: 0%;
height: 10px;
background-color: #FEB252;
text-align: center;
line-height: 0px;
color: #101010;
border-radius: 5px;
}

.skill .col:hover p {
transform: translateY(0px);
opacity: 1;
/* TODO: Gallery */
.gallery img{
border-radius: 5px;
}

/* TODO: Project Card */
/* TODO: Project */
.project .card {
/* box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.8); */
transform-style: preserve-3d;
Expand Down
19 changes: 19 additions & 0 deletions css/text.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,26 @@ mark {
color: #feb252;
}

.typewrite1 {
font-family: monospace;
font-size: 20px;
}

.typewrite1 h5 {
color: #e3e3e3;
}

.typewrite1::-webkit-scrollbar {
display: none;
}

.typewrite3 {
text-align: justify;
text-justify: inter-word;
}

@media screen and (max-width: 768px) {
.typewrite1 {
font-size: 10px;
}
}
Loading

0 comments on commit 2f95d7b

Please sign in to comment.