Skip to content

Commit

Permalink
test link colors for dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
tay committed Oct 15, 2024
1 parent d771425 commit ac986fb
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions static/assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -352,20 +352,18 @@ section:hover {
transform: scale(1.02);
}

/* Button styles */
.enter-button {
background-color: #cebaef; /* Main button color */
color: #fff; /* Text color */
border: none; /* No border */
border-radius: 5px; /* Rounded corners */
padding: 10px 20px; /* Padding */
cursor: pointer; /* Pointer cursor on hover */
transition: background-color 0.3s; /* Transition for hover effect */
background-color: #cebaef;
color: #fff;
border: none;
border-radius: 5px;
padding: 10px 20px;
cursor: pointer;
transition: background-color 0.3s;
}

/* Button hover effect */
.enter-button:hover {
background-color: #c4a1e1; /* Slightly darker shade for hover */
background-color: #c4a1e1;
}

@media (max-width: 768px) {
Expand Down

0 comments on commit ac986fb

Please sign in to comment.