-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
064d26f
commit be99b19
Showing
1 changed file
with
26 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |