-
Notifications
You must be signed in to change notification settings - Fork 268
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 #928 from sau-mili/main
Contact forms, navbar bug
- Loading branch information
Showing
6 changed files
with
242 additions
and
44 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,70 @@ | ||
|
||
.contact1{ | ||
display: grid; | ||
grid-auto-flow: column; | ||
border-radius: 5px; | ||
background-color: #ffffff; | ||
padding: 20px; | ||
/* gap: 10px; */ | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.contact-form1{ | ||
margin-left: 0px; | ||
/* margin-right: 150px; */ | ||
padding-right: 70px; | ||
background-color: none !important; | ||
} | ||
|
||
|
||
.contact-form1 label{ | ||
font-size: 16px; | ||
color: grey; | ||
font-weight: 100; | ||
padding:0px 5px; | ||
cursor:text; | ||
top:0; | ||
left:0; | ||
position:absolute; | ||
} | ||
|
||
|
||
.contact-form1 input{ | ||
width:100%; | ||
height: 25px !important; | ||
} | ||
|
||
.contact-form1 textarea{ | ||
width: 100%; | ||
} | ||
|
||
|
||
form label { | ||
display: block; | ||
margin-top: 10px; | ||
/* color: #0073e6; */ | ||
} | ||
form input, | ||
form textarea { | ||
width: calc(100% - 20px); | ||
padding: 10px; | ||
margin-top: 5px; | ||
border: 1px solid #ccc; | ||
border-radius: 5px; | ||
box-sizing: border-box; | ||
} | ||
|
||
form button { | ||
padding: 10px 20px; | ||
background: #0073e6; | ||
color: #fff; | ||
border: none; | ||
margin-top: 10px; | ||
cursor: pointer; | ||
border-radius: 5px; | ||
transition: background-color 0.3s ease; | ||
} | ||
|
||
form button:hover { | ||
background: #005bb5; | ||
} |
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
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
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
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
Oops, something went wrong.