-
Notifications
You must be signed in to change notification settings - Fork 1
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
4971a0f
commit 8b7f33f
Showing
1 changed file
with
17 additions
and
23 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,33 +1,27 @@ | ||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #e8f5e9; /* Light green background */ | ||
color: #1b5e20; /* Dark green text */ | ||
.header { | ||
text-align: left; | ||
padding: 10px; | ||
} | ||
|
||
.header { | ||
background-color: #4caf50; /* Green header */ | ||
color: white; | ||
text-align: center; | ||
padding: 10px 0; | ||
.header img { | ||
height: 60px; | ||
} | ||
|
||
.about-button { | ||
display: inline-block; | ||
padding: 10px 20px; | ||
margin: 20px; | ||
background-color: #66bb6a; /* Medium green button */ | ||
.header h1 { | ||
margin-top: 0; | ||
} | ||
|
||
.button { | ||
display: block; | ||
margin-top: 10px; | ||
padding: 10px; | ||
background-color: #4caf50; /* Example background color */ | ||
color: white; | ||
text-decoration: none; | ||
border-radius: 5px; | ||
text-align: center; | ||
} | ||
|
||
.about-button:hover { | ||
background-color: #81c784; /* Lighter green on hover */ | ||
transition: box-shadow 0.3s ease-in-out; | ||
} | ||
|
||
.centered-iframe { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
.button:hover { | ||
box-shadow: 0 0 8px 2px #66bb6a; /* Green glow */ | ||
} |