Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
Reyes Franco authored and Reyes Franco committed Jul 11, 2024
1 parent 2703832 commit 9acf831
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ body {
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 0;
color: #333; /* Dark grey text */
color: #192231; /* Dark blue text */

display: flex;
flex-direction: column;
Expand All @@ -12,7 +12,7 @@ body {

header {
width: 100%;
background-color: #7bb9fb;
background-color: #985E6D;
padding: 0.5em 0;
border-bottom: 1px solid #eaeaea;
}
Expand All @@ -22,13 +22,13 @@ nav {
justify-content: center; /* Centers the nav links */
align-items: center; /* Centers the nav links vertically */
flex-wrap: wrap; /* Wraps the nav links to the next line on small screens */
gap: 20px; /* Spaces out the nav links */
gap: 50px; /* Spaces out the nav links */
text-decoration: none;
}

nav a {
text-decoration: none;
color: #0056b3;
color: #192231;
padding: 0.5em 1em; /* Padding around the links for clickability */
transition: color 0.3s ease;
}
Expand Down Expand Up @@ -83,7 +83,7 @@ nav a {
footer {
width: 100%;
flex-shrink: 0;
background-color: #7bb9fb;
background-color: #985E6D;
text-align: center;
padding: 10px 0;
}
Expand Down Expand Up @@ -123,8 +123,8 @@ nav a, #welcome a {
}

.download-cv {
background-color: #FFD700; /* Green */
color: white;
background-color: #98878F; /* Grey */
color: rgb(255, 255, 255);
padding: 10px 20px;
text-align: center;
display: block;
Expand All @@ -135,7 +135,7 @@ nav a, #welcome a {
}

.download-cv:hover {
background-color: #907f1b; /* Darker green */
background-color: #72666c; /* Darker grey */
}

@media (max-width: 768px) {
Expand All @@ -160,7 +160,7 @@ nav a, #welcome a {

.latest-news h2 {
margin-bottom: 1em;
color: #333; /* Dark grey text */
color: #192231; /* Dark blue text */
}

.latest-news ul {
Expand All @@ -185,7 +185,7 @@ nav a, #welcome a {
}

.news-item {
background-color: white; /* White background for each item */
background-color: #98878F; /* White background for each item */
margin-bottom: 10px; /* Space between news items */
padding: 10px;
border-radius: 5px; /* Rounded corners for polish */
Expand Down

0 comments on commit 9acf831

Please sign in to comment.