Skip to content

Commit

Permalink
get ready for final submission
Browse files Browse the repository at this point in the history
  • Loading branch information
YeeClaw committed Dec 14, 2023
1 parent a6b1c29 commit 9feda8d
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 3 deletions.
3 changes: 2 additions & 1 deletion portfolio/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Austin Colt | Home</title>
<title>Austin Colt | Contact</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles/style.css">
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="scripts/script.js" defer></script>
Expand Down
Binary file added portfolio/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions portfolio/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Austin Colt | Home</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles/style.css">
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="scripts/script.js" defer></script>
Expand Down
3 changes: 2 additions & 1 deletion portfolio/music.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Austin Colt | Home</title>
<title>Austin Colt | Music</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles/style.css">
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="scripts/script.js" defer></script>
Expand Down
3 changes: 2 additions & 1 deletion portfolio/programming.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Austin Colt | Home</title>
<title>Austin Colt | Programming</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles/style.css">
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="scripts/script.js" defer></script>
Expand Down
41 changes: 41 additions & 0 deletions portfolio/styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -280,4 +280,45 @@ footer p a:hover {
footer .social img {
padding-top: 15px;

}

@media screen and (max-width: 1440px) {

.info-left p {
width: 500px;
background-color: var(--paragraph-background-color);
color: var(--paragraph-color-on-white);
border-radius: 15px;
grid-column: 6 / 11;
grid-row: 4 / 7;

}
.info-right p {
width: 500px;
background-color: var(--paragraph-background-color);
color: var(--paragraph-color-on-white);
border-radius: 15px;
grid-column: 6 / 1;
grid-row: 4 / 7;
justify-self: right;
}
.info-left .info-side-image {
grid-column: 9 / 10;
grid-row: 3 / 7;
}
}

@media screen and (max-width: 900px) {

nav, footer {
flex-direction: column;
}
nav a {
display: block;
padding: 15px;
height: 25px;
}
footer {
margin-top: 25px;
}
}

0 comments on commit 9feda8d

Please sign in to comment.