Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielspadon authored Feb 7, 2024
1 parent 064d26f commit be99b19
Showing 1 changed file with 26 additions and 12 deletions.
38 changes: 26 additions & 12 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,21 +1,35 @@
body {
background: linear-gradient(rgba(0, 123, 255, 0.5), rgba(0, 123, 255, 0.5)), url('your-background-image.jpg') no-repeat center center fixed;
background-size: cover;
background: radial-gradient(circle, rgba(54, 124, 194, 0.5) 20%, rgba(163, 176, 199, 0.25) 75%);
color: #212529;
margin: 0;
}

.btn-info.text-white {
background-color: #005f73 !important; /* A darker shade for buttons */
border-color: #005f73 !important;
.vh-100 {
height: 100vh;
}

.btn-info.text-white:hover {
background-color: #0077b6 !important; /* Slightly lighter shade on hover */
border-color: #0077b6 !important;
.btn-outline-secondary {
color: #fff;
border-color: rgba(255, 255, 255, 0.5);
background-color: transparent;
transition: all 0.3s ease;
}

.container {
background: rgba(255, 255, 255, 0.8); /* Semi-transparent white background for better readability */
border-radius: 15px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
.btn-outline-secondary:hover {
background-color: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-secondary i {
margin-right: 5px;
}

.display-4 {
font-color: #212529;
font-weight: 700;
font-size: 4.5rem;
}

.btn-group > a:not(:last-child) {
margin-right: 10px;
}

0 comments on commit be99b19

Please sign in to comment.