| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /* Stacked Alignment
- ---------------------------------------------------*/
- .fl-cta-left {
- text-align: left;
- }
- .fl-cta-center {
- text-align: center;
- }
- .fl-cta-right {
- text-align: right;
- }
- /* Inline Alignment
- ---------------------------------------------------*/
- .fl-cta-inline {
- display: table;
- width: 100%;
- }
- .fl-cta-inline .fl-cta-image,
- .fl-cta-inline .fl-cta-text,
- .fl-cta-inline .fl-cta-button {
- display: table-cell;
- vertical-align: middle;
- }
- .fl-cta-inline .fl-cta-text {
- width: 70%;
- }
- .fl-cta-inline .fl-cta-button {
- padding-left: 30px;
- text-align: center;
- width: 30%;
- }
- .fl-cta-inline .fl-cta-image {
- width: 20%;
- padding-right: 30px;
- }
- .fl-cta-inline .fl-cta-image + .fl-cta-text {
- width: 50%;
- }
- /* Title
- ---------------------------------------------------*/
- body h1.fl-cta-title,
- body h2.fl-cta-title,
- body h3.fl-cta-title,
- body h4.fl-cta-title,
- body h5.fl-cta-title,
- body h6.fl-cta-title {
- margin: 0;
- padding: 0 0 10px 0;
- }
- /* Button
- ---------------------------------------------------*/
- .fl-cta-stacked .fl-cta-button {
- padding-top: 20px;
- }
|