Files
Portfolio/src/App.css

102 lines
1.6 KiB
CSS
Raw Normal View History

2024-06-24 00:15:38 -04:00
.App {
text-align: center;
background-color: black;
position: absolute;
top: 0px;
right: 0px;
left: 0px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
color: azure;
2025-05-11 21:53:52 -04:00
overflow-x: hidden;
scroll-behavior: smooth;
}
html {
scroll-behavior: smooth;
}
section {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
section.visible {
opacity: 1;
transform: translateY(0);
2024-06-24 00:15:38 -04:00
}
.App-logo {
height: 40vmin;
pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}
.App-header {
background-color: black;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #61dafb;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.About {
width: 100%;
position: absolute;
top: 120px;
bottom: 0px;
left: 0px;
right: 0px;
}
hr {
width: 70%;
margin-left: 15% !important;
margin-right: 15% !important;
border: 10px solid aquamarine;
}
2025-05-11 21:53:52 -04:00
.publications, .Experience, .DevTools, .Contact {
margin-top: 100px;
padding: 40px 0;
}
.section-title {
margin-bottom: 40px;
transform: translateY(0);
transition: transform 0.4s ease-out;
}
section:hover .section-title {
transform: translateY(-5px);
2024-06-24 00:15:38 -04:00
}
.slick-dots button:before {
color: grey !important;
}
.slick-dots li.slick-active button:before {
color: White !important;
}