Skip to content

Commit

Permalink
Update HTML-CSS-Project-1-Implementati0on-Guide-Dynamic.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrbrianojee authored Aug 15, 2024
1 parent d7375f9 commit 36b216d
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions HTML-CSS-Project-1-Implementati0on-Guide-Dynamic.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,16 @@
.accordion-button {
background-color: #007bff !important;
color: white !important;
font-weight: bold;
border-radius: 5px;
padding: 15px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: left;
transition: background-color 0.3s ease, color 0.3s ease;
cursor: pointer;
display: block;
width: 100%;
border: none;
font-weight: bold !important;
border-radius: 5px !important;
padding: 15px !important;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
text-align: left !important;
transition: background-color 0.3s ease, color 0.3s ease !important;
cursor: pointer !important;
display: block !important;
width: 100% !important;
border: none !important;
}

.accordion-button:not(.collapsed) {
Expand All @@ -82,16 +82,16 @@
.accordion-button:hover {
background-color: #0056b3 !important;
color: white !important;
text-decoration: none;
text-decoration: none !important;
}

.accordion-button:focus {
box-shadow: none;
box-shadow: none !important;
}

/* Remove default arrow on the accordion button */
.accordion-button::after {
display: none;
display: none !important;
}

.accordion-button.collapsed {
Expand Down

0 comments on commit 36b216d

Please sign in to comment.