forked from ANSHIKA-26/WordWise
-
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.
Merge pull request ANSHIKA-26#191 from zalabhavy/audio
Audio Style added and fix in center
- Loading branch information
Showing
2 changed files
with
88 additions
and
33 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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
.container.centered { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
height: 80vh; | ||
} | ||
|
||
.input-container { | ||
display: flex; | ||
align-items: center; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.input-field { | ||
width: 220px; | ||
padding: 10px; | ||
margin-right: 10px; | ||
border-radius: 5px; | ||
border: 1px solid #ccc; | ||
transition: border-color 0.3s, box-shadow 0.3s; | ||
} | ||
|
||
.input-field:focus { | ||
border-color: #007bff; | ||
box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); | ||
} | ||
|
||
.input-button { | ||
padding: 15px 25px; | ||
height: 42px; | ||
width: 80px; | ||
border-radius: 5px; | ||
transition: background-color 0.3s, box-shadow 0.3s; | ||
} | ||
|
||
.input-button:hover { | ||
background-color: #0056b3; | ||
box-shadow: 0 0 10px rgba(0, 86, 179, 0.5); | ||
} | ||
|
||
.card { | ||
transition: transform 0.3s, box-shadow 0.3s; | ||
} | ||
|
||
.card:hover { | ||
transform: scale(1.05); | ||
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); | ||
} | ||
|
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