-
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
329be8e
commit 4d0e207
Showing
41 changed files
with
1,093 additions
and
0 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,91 @@ | ||
* { | ||
padding: 0; | ||
margin: 0; | ||
box-sizing: border-box; | ||
font-family: "Quicksand", sans-serif; | ||
} | ||
|
||
body { | ||
height: 100vh; | ||
width: 100%; | ||
} | ||
|
||
.container { | ||
position: relative; | ||
width: 100%; | ||
height: 100%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 20px 10px; | ||
} | ||
|
||
.contact-box { | ||
max-width: 850px; | ||
display: grid; | ||
grid-template-columns: repeat(2, 1fr); | ||
justify-content: center; | ||
align-items: center; | ||
text-align: center; | ||
background-color: #fff; | ||
box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, 0.19); | ||
border-radius: 2%; | ||
} | ||
|
||
.left { | ||
background: no-repeat center; | ||
background-size: cover; | ||
height: 100%; | ||
} | ||
|
||
.right { | ||
padding: 5px 10px; | ||
} | ||
|
||
h2 { | ||
position: relative; | ||
padding: 0 0 10px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.field { | ||
width: 100%; | ||
border: 2px solid rgba(0, 0, 0, 0); | ||
outline: none; | ||
background-color: rgba(230, 230, 230, 0.6); | ||
padding: 0.5rem 1rem; | ||
font-size: 1.1rem; | ||
margin-bottom: 22px; | ||
transition: 0.3s; | ||
} | ||
|
||
.field:hover { | ||
background-color: rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
textarea { | ||
min-height: 150px; | ||
} | ||
|
||
.btn { | ||
width: 100%; | ||
padding: 0.5rem 1rem; | ||
/* background-color: #2ecc71; */ | ||
color: #fff; | ||
font-size: 1.1rem; | ||
border: none; | ||
outline: green; | ||
cursor: pointer; | ||
transition: 0.3s; | ||
-webkit-text-stroke: #27ae60 2px; | ||
} | ||
|
||
.btn:hover { | ||
/* border: 2px solid green; */ | ||
background-color: aliceblue; | ||
} | ||
|
||
.field:focus { | ||
border: 2px solid rgba(30, 85, 250, 0.47); | ||
background-color: #fff; | ||
} |
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,91 @@ | ||
* { | ||
padding: 0; | ||
margin: 0; | ||
box-sizing: border-box; | ||
font-family: "Quicksand", sans-serif; | ||
} | ||
|
||
body { | ||
height: 100vh; | ||
width: 100%; | ||
} | ||
|
||
.container { | ||
position: relative; | ||
width: 100%; | ||
height: 100%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 20px 10px; | ||
} | ||
|
||
.contact-box { | ||
max-width: 850px; | ||
display: grid; | ||
grid-template-columns: repeat(2, 1fr); | ||
justify-content: center; | ||
align-items: center; | ||
text-align: center; | ||
background-color: #fff; | ||
box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, 0.19); | ||
border-radius: 2%; | ||
} | ||
|
||
.left { | ||
background: no-repeat center; | ||
background-size: cover; | ||
height: 100%; | ||
} | ||
|
||
.right { | ||
padding: 5px 10px; | ||
} | ||
|
||
h2 { | ||
position: relative; | ||
padding: 0 0 10px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.field { | ||
width: 100%; | ||
border: 2px solid rgba(0, 0, 0, 0); | ||
outline: none; | ||
background-color: rgba(230, 230, 230, 0.6); | ||
padding: 0.5rem 1rem; | ||
font-size: 1.1rem; | ||
margin-bottom: 22px; | ||
transition: 0.3s; | ||
} | ||
|
||
.field:hover { | ||
background-color: rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
textarea { | ||
min-height: 150px; | ||
} | ||
|
||
.btn { | ||
width: 100%; | ||
padding: 0.5rem 1rem; | ||
/* background-color: #2ecc71; */ | ||
color: #fff; | ||
font-size: 1.1rem; | ||
border: none; | ||
outline: green; | ||
cursor: pointer; | ||
transition: 0.3s; | ||
-webkit-text-stroke: #27ae60 2px; | ||
} | ||
|
||
.btn:hover { | ||
/* border: 2px solid green; */ | ||
background-color: aliceblue; | ||
} | ||
|
||
.field:focus { | ||
border: 2px solid rgba(30, 85, 250, 0.47); | ||
background-color: #fff; | ||
} |
Oops, something went wrong.