Skip to content

Commit

Permalink
Update styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadBalti authored Nov 9, 2023
1 parent e2c7fc5 commit b8ebe28
Showing 1 changed file with 80 additions and 0 deletions.
80 changes: 80 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,83 @@ label {
text-align: left;
}


/* Repositories Section */
#repositories {
max-width: 800px;
margin: 20px auto;
text-align: left;
}

#repositoriesList {
list-style: none;
padding: 0;
}

#repositoriesList li {
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 5px;
padding: 15px;
margin-bottom: 15px;
display: flex;
justify-content: space-between;
align-items: center;
}

.repo-details {
flex-grow: 1;
}

.repo-details strong {
font-size: 18px;
}

.repo-details p {
margin: 5px 0;
}

.repo-actions button {
padding: 10px;
background-color: #4caf50;
color: #fff;
border: none;
border-radius: 3px;
cursor: pointer;
transition: background-color 0.3s;
}

.repo-actions button:hover {
background-color: #45a049;
}

/* Modal Styles */
#modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
justify-content: center;
align-items: center;
z-index: 1;
}

.modal-content {
background-color: #fff;
padding: 20px;
border-radius: 5px;
position: relative;
}

.close-btn {
cursor: pointer;
font-size: 20px;
color: #555;
position: absolute;
top: 10px;
right: 10px;
}

0 comments on commit b8ebe28

Please sign in to comment.