Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
snehaapratap authored Oct 11, 2024
1 parent 55d7b39 commit 42dd48a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions website/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1581,3 +1581,33 @@ body::-webkit-scrollbar-thumb {
color: rgb(96 165 250 / var(--tw-text-opacity));
}
}



.btn-primary {
background-color: #007bff;
color: white;
font-weight: bold;
padding: 10px 20px;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
background-color: #0056b3;
}

.btn-primary:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}

.flex {
display: flex;
}

.space-x-4>*:not(:last-child) {
margin-right: 1rem;
}

0 comments on commit 42dd48a

Please sign in to comment.