Add p tag typing effect

This commit is contained in:
Tyler Perkins
2023-07-19 22:14:23 -04:00
parent eb57cc04f4
commit f6caea99db
6 changed files with 95 additions and 13 deletions

View File

@@ -5,7 +5,7 @@
bottom: 0;
left: 0;
width: 100%;
height: 150%;
height: 200%;
overflow-y: hidden;
z-index: -1;

View File

@@ -91,12 +91,30 @@ html {
background-color: rgba(11,11,12,0.4);
corner-radius: 10px;
margin: 2vh 2vw;
display: grid;
grid-template-rows: auto 1fr;
overflow-y: hidden;
}
.about-grid {
display: grid;
grid-template-columns: 65% 1fr;
grid-template-rows: 1fr max-content;
height: 100%;
width: 100%;
}
.card-title {
display: inline-block;
margin: 10px;
margin-right: auto;
padding-right: 10px;
}
.about-description p {
word-wrap: break-word;
white-space: pre-wrap;
}
.hobbies {