Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
ihyunnam authored Dec 5, 2023
1 parent b4bd454 commit 476f79b
Showing 1 changed file with 0 additions and 92 deletions.
92 changes: 0 additions & 92 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,98 +7,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<link rel="icon" href="images/favicon.ico">
<style>
/* Set font to Open Sans */
body, p, h2, h3, h4, h5, h6 {
font-family: 'Arial', sans-serif; /* Set font to Open Sans */
}

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 */
}

@keyframes dropIn {
0% {
transform: translateY(-100%);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}

nav li {
display: inline;
margin: 0 10px;

}

nav a {
text-decoration: none;
color: white;
font-weight: bold;
font-size: 13pt; /* Increase font size by 3pt */
}

/* CSS to remove borders between table cells */
table {
border-collapse: collapse;
}

table td {
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 */
}

/* CSS for the large heading */
.large-heading {
font-size: 24pt; /* Set the font size for the large heading */
text-align: center; /* Center the heading */
margin-top: 10px; /* Add margin to create space between heading and menu bar */
}

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

/* Change the background color of the menu bar */
nav {
background-color: #57A0D3; /* Background color changed to #57A0D3 (light blue) */
color: white; /* Text color for the menu links */
text-align: center;
position: sticky; /* Sticky position */
top: 0; /* Stick to the top */
z-index: 1; /* Place above other elements */
font-family: 'Open Sans', sans-serif; /* Set font to Calibri */
}

/* Reduce the space between menu bar and everything below */
nav {
margin-bottom: 10px; /* Reduce the margin at the bottom of the menu bar */
}
</style>
</head>
<body>
<!-- Large heading above the menu bar -->
Expand Down

0 comments on commit 476f79b

Please sign in to comment.