Skip to content

Commit

Permalink
Update teaching.html
Browse files Browse the repository at this point in the history
  • Loading branch information
ihyunnam authored Dec 5, 2023
1 parent ec2259b commit a4c4828
Showing 1 changed file with 5 additions and 35 deletions.
40 changes: 5 additions & 35 deletions teaching.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,44 +6,26 @@
<meta name="author" content="Ihyun Nam">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🌐</text></svg>">
<link rel="icon" href="images/favicon.ico,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🌐</text></svg>">
<style>
/* Set font to Open Sans */
body, p, h2, h3, h4, h5, h6 {
font-family: 'Arial', sans-serif; /* Set font to Open Sans */
}

nav ul {
padding: 0;
list-style-type: none;
}

h1 {
font-family: 'Courier New', monospace;
font-weight: bold;
}

nav ul {
padding: 0;
list-style-type: none;
}

.title {
display: inline-block; /* Ensure each letter is treated as a block */
}

/* Add jump animation */
@keyframes jump {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40%, 60% {
transform: translateY(-20px);
}
}

/* Apply jump animation to each letter individually */
.title span {
display: inline-block;
animation: dropIn 1s ease-out infinite;
}


@keyframes dropIn {
0% {
Expand Down Expand Up @@ -78,12 +60,6 @@
border: none;
}

/* Reduce the size of the profile photo */
.profile-photo {
width: 80%; /* Reduce the width of the photo */
max-width: 300px; /* Set a maximum width for the photo */
}

/* Increase font size for content */
#about, #research, #projects, #teaching, #experience, #awards {
font-size: 13pt; /* Increase font size by 3pt */
Expand All @@ -96,12 +72,6 @@
margin-top: 10px; /* Add margin to create space between heading and menu bar */
}

/* Increase the size of the profile photo */
.profile-photo {
width: 90%; /* Increase the width of the photo */
max-width: 350px; /* Set a maximum width for the photo */
}

/* Reduce margins for the entire page */
body {
margin: 10px; /* Set a smaller margin for the entire page */
Expand Down

0 comments on commit a4c4828

Please sign in to comment.