forked from adobe-rnd/aem-boilerplate-xwalk
-
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 branches 'feature/component-creation' and 'feature/component-cr…
…eation' of https://github.com/shamalijadhav/piramalfinance into feature/component-creation
- Loading branch information
Showing
1 changed file
with
99 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,99 @@ | ||
.calculator-section-css .calculator-wrapper .calculator >div >div p { | ||
font-size: 2rem; | ||
font-family: "Nunito-Regular"; | ||
font-weight: bold; | ||
margin: 0; | ||
} | ||
|
||
.calculator-section-css .default-content-wrapper p { | ||
font-size: 20px; | ||
font-family: "Nunito-Regular"; | ||
color: #666666; | ||
margin-top: 0; | ||
} | ||
|
||
.calculator-section-css .columns-wrapper .columns{ | ||
position: relative; | ||
} | ||
|
||
.calculator-section-css .columns-wrapper .columns >div >div{ | ||
width: 100%; | ||
height: 150px; | ||
overflow: hidden; | ||
border-radius: 32px; | ||
} | ||
.calculator-section-css .columns-wrapper .columns img{ | ||
border-radius: 32px; | ||
} | ||
|
||
.calculator-section-css img:hover { | ||
transition: transform 0.3s ease-in-out; | ||
transform: scale(1.2); | ||
} | ||
|
||
.calculator-section-css .columns-wrapper .columns h4{ | ||
top: 10%; | ||
position: absolute; | ||
font-size: 1.5rem; | ||
color: #ffffff; | ||
padding-left: 20px; | ||
font-family: "Nunito-Regular"; | ||
} | ||
|
||
.calculator-section-css .columns-wrapper .columns .button-container a{ | ||
font-size: 14px; | ||
padding: 15px 18px; | ||
background: #F26841; | ||
color: #ffffff; | ||
border-radius: 8px; | ||
position: absolute; | ||
top: 40%; | ||
margin-left: 20px; | ||
} | ||
|
||
@media screen and (max-width: 767.99px) { | ||
.calculator-section-css .calculator-wrapper .calculator >div >div p { | ||
font-size: 18px; | ||
font-weight: bold; | ||
margin: 0; | ||
} | ||
|
||
.calculator-section-css .default-content-wrapper p { | ||
font-size: 14px; | ||
color: #666666; | ||
margin-top: 0; | ||
} | ||
.calculator-section-css .columns-wrapper .columns img { | ||
width: 100%; | ||
height: 110px; | ||
border-radius: 16px; | ||
} | ||
.calculator-section-css .columns-wrapper .columns > div > div { | ||
position: relative; | ||
} | ||
.calculator-section-css .columns-wrapper .columns h4{ | ||
top: 0%; | ||
position: absolute; | ||
font-size: 1rem; | ||
color: #ffffff; | ||
padding-left: 20px; | ||
font-family: "Nunito-Regular"; | ||
} | ||
|
||
.calculator-section-css .columns-wrapper .columns .button-container a{ | ||
font-size: 14px; | ||
padding: 9px 11px; | ||
background: #F26841; | ||
color: #ffffff; | ||
border-radius: 8px; | ||
position: absolute; | ||
top: 25%; | ||
margin-left: 20px; | ||
} | ||
.calculator-section-css .columns-wrapper .columns > div > div p:first-child{ | ||
margin: 0; | ||
} | ||
} | ||
|
||
|
||
|