forked from smaranjitghose/doc2pen
-
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 smaranjitghose#732 from ashuvssut/sass-home3
css->scss: contact form + map + footer
- Loading branch information
Showing
17 changed files
with
446 additions
and
440 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
This file was deleted.
Oops, something went wrong.
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,137 @@ | ||
@use './../../scss/colors'; | ||
|
||
.footerDiv { | ||
position: relative; | ||
margin-top: 2rem; | ||
background-image: url("./../../assets/images/footer/origami.webp"); | ||
background-position: center; | ||
background-size: cover; | ||
background-repeat: no-repeat; | ||
|
||
.topShape { | ||
overflow: hidden; | ||
position: relative; | ||
top: 0; | ||
left: 0; | ||
z-index: 1; | ||
width: 100%; | ||
line-height: 0; | ||
direction: ltr; | ||
|
||
svg { | ||
display: block; | ||
width: calc(100% + 1.3px); | ||
position: relative; | ||
left: 50%; | ||
-webkit-transform: translateX(-50%) rotateY(180deg); | ||
-ms-transform: translateX(-50%) rotateY(180deg); | ||
transform: translateX(-50%) rotateY(180deg); | ||
overflow: hidden; | ||
|
||
.svgPath { | ||
fill: colors.$white; | ||
-webkit-transform-origin: center; | ||
-ms-transform-origin: center; | ||
transform-origin: center; | ||
-webkit-transform: rotateY(0deg); | ||
transform: rotateY(0deg); | ||
} | ||
} | ||
} | ||
.tint { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
height: 100%; | ||
width: 100%; | ||
background: colors.$black-dark-tint; | ||
} | ||
|
||
.newsletter { | ||
position: relative; | ||
color: colors.$white; | ||
text-align: center; | ||
padding: 50px 0 70px 0; | ||
|
||
.heading { | ||
h5 { | ||
font-size: 2.5rem; | ||
font-weight: 300; | ||
margin-bottom: 3rem; | ||
} | ||
h6 { | ||
font-weight: 300; | ||
margin-bottom: 0; | ||
} | ||
} | ||
|
||
.emailField { | ||
min-width: 320px; | ||
text-align: center; | ||
margin: 0 5px; | ||
|
||
.form { | ||
display: inline-block; | ||
display: flex; | ||
align-items: stretch; | ||
justify-content: center; | ||
|
||
.box { | ||
height: 40px; | ||
background-color: colors.$white; | ||
border-radius: 30px 0 0 30px; | ||
display: flex; | ||
align-items: center; | ||
padding: 15px; | ||
min-width: 220px; | ||
|
||
.icon { | ||
padding: 10px; | ||
color: colors.$royal-blue; | ||
min-width: 40px; | ||
} | ||
input { | ||
flex: 1; | ||
height: 30px; | ||
border: none; | ||
outline: none; | ||
font-size: 16px; | ||
} | ||
} | ||
.bsClass { | ||
border-radius: 0 30px 30px 0; | ||
padding: 6px 15px; | ||
background-color: colors.$royal-blue; | ||
border: 2px solid colors.$royal-blue; | ||
color: colors.$white; | ||
|
||
&:hover { | ||
background-color: colors.$navy-blue; | ||
border: 2px solid colors.$navy-blue; | ||
} | ||
} | ||
} | ||
.textMuted { | ||
padding-top: 11px; | ||
font-size: 13px; | ||
} | ||
@media screen and (max-width: 474px) { | ||
.form { | ||
margin-left: 0px; | ||
} | ||
.textMuted { | ||
text-align: center; | ||
} | ||
} | ||
} | ||
} | ||
|
||
.footerText { | ||
text-align: center; | ||
color: colors.$white; | ||
font-weight: 400; | ||
font-size: 1.2rem; | ||
padding: 30px; | ||
padding-top: 0; | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
src/pages/Home/sections/Contact/components/EmojiRating/EmojiRating.jsx
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
33 changes: 0 additions & 33 deletions
33
src/pages/Home/sections/Contact/components/EmojiRating/EmojiRating.module.css
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.