simple changes
This commit is contained in:
13
index.html
13
index.html
@@ -144,7 +144,6 @@
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: rgba(255,255,255,0.15) transparent;
|
||||
transition: opacity 0.35s ease-out;
|
||||
}
|
||||
#resume-section.visible {
|
||||
opacity: 1;
|
||||
@@ -294,12 +293,18 @@
|
||||
}
|
||||
|
||||
/* --- hide/show --- */
|
||||
@keyframes sceneContentFadeIn {
|
||||
from { opacity: 0; }
|
||||
to { opacity: 1; }
|
||||
}
|
||||
#scene-content {
|
||||
transition: opacity 0.3s ease-out;
|
||||
opacity: 1;
|
||||
animation: sceneContentFadeIn 0.3s ease-out;
|
||||
}
|
||||
#scene-content.hidden {
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
animation: none;
|
||||
}
|
||||
|
||||
/* ---------- projects section ---------- */
|
||||
@@ -322,7 +327,6 @@
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: rgba(255,255,255,0.15) transparent;
|
||||
transition: opacity 0.35s ease-out;
|
||||
}
|
||||
#projects-section.visible {
|
||||
opacity: 1;
|
||||
@@ -470,8 +474,7 @@
|
||||
<button data-nav="0">Home</button>
|
||||
<button data-nav="1">About</button>
|
||||
<button data-nav="2">Projects</button>
|
||||
<button data-nav="3">Contact</button>
|
||||
<button data-nav="4">Resume</button>
|
||||
<button data-nav="3">Resume</button>
|
||||
</nav>
|
||||
<div id="scene-content">
|
||||
<h1 id="scene-title"></h1>
|
||||
|
||||
Reference in New Issue
Block a user