41 lines
599 B
CSS
41 lines
599 B
CSS
|
.pricing-plan {
|
||
|
|
||
|
width:300px;
|
||
|
border-radius: 25px;
|
||
|
box-shadow: 0 0 5px rgba(0,0,0,0.2);
|
||
|
overflow: hidden;
|
||
|
font-family: sans-serif;
|
||
|
font-size: 16px;
|
||
|
line-height: 1.5;
|
||
|
color: #555555;
|
||
|
margin: 15px;
|
||
|
|
||
|
}
|
||
|
|
||
|
.pricing-plan__header{
|
||
|
|
||
|
padding:25px;
|
||
|
background: #009578;
|
||
|
color: #ffffff;
|
||
|
|
||
|
}
|
||
|
|
||
|
.pricing-plan__title,
|
||
|
.pricing-plan__summary{
|
||
|
|
||
|
margin: 0;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.pricing-plan__title{
|
||
|
|
||
|
font-size: 1.5em;
|
||
|
font-weight: 400;
|
||
|
|
||
|
}
|
||
|
|
||
|
.pricing-plan__summary {
|
||
|
|
||
|
font-size: 1em;
|
||
|
font-weight:300;
|
||
|
}
|