pricing plan styled process
This commit is contained in:
parent
90c80c4dc8
commit
b19ade697e
|
@ -63,8 +63,13 @@ const Header = styled.div`
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
|
|
||||||
`;
|
`;
|
||||||
|
const Summary = styled.h2`
|
||||||
|
|
||||||
const PricingPlan_SpecialText = styled.div`
|
font-size: 1em;
|
||||||
|
font-weight: 300;
|
||||||
|
`;
|
||||||
|
|
||||||
|
const SpecialText = styled.div`
|
||||||
|
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
@ -73,8 +78,24 @@ const PricingPlan_SpecialText = styled.div`
|
||||||
background: #007c64;
|
background: #007c64;
|
||||||
box-shadow: 0 0 10px rgba(0,0,0,0.2) inset;
|
box-shadow: 0 0 10px rgba(0,0,0,0.2) inset;
|
||||||
|
|
||||||
|
&, ${Title}{
|
||||||
|
margin: 0;
|
||||||
|
text-align: center;
|
||||||
|
font-family: sans-serif;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
`;
|
||||||
|
const Desc = styled.div`
|
||||||
|
|
||||||
|
padding: 25px;
|
||||||
|
|
||||||
|
`;
|
||||||
|
const List = styled.ul `
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
text-align: left;
|
||||||
`;
|
`;
|
||||||
const
|
|
||||||
|
|
||||||
class PricingPlan extends Component {
|
class PricingPlan extends Component {
|
||||||
|
|
||||||
|
|
|
@ -21,33 +21,21 @@
|
||||||
|
|
||||||
.pricing-plan__title,.pricing-plan__summary{
|
.pricing-plan__title,.pricing-plan__summary{
|
||||||
|
|
||||||
margin: 0;
|
|
||||||
text-align: center;
|
|
||||||
font-family: sans-serif;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-plan__title{
|
.pricing-plan__title{
|
||||||
|
|
||||||
font-size: 1.5em;
|
|
||||||
font-weight: 400;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-plan__summary {
|
.pricing-plan__summary {
|
||||||
|
|
||||||
font-size: 1em;
|
|
||||||
font-weight:300;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-plan__desc {
|
.pricing-plan__desc {
|
||||||
padding:25px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-plan__list {
|
.pricing-plan__list {
|
||||||
|
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
text-align: left;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-plan__feature {
|
.pricing-plan__feature {
|
||||||
|
|
Loading…
Reference in New Issue