Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* General Code */
- section#SECTION-ID-HERE .sqs-row .sqs-row {
- display: flex;
- flex-wrap: wrap;
- }
- section#SECTION-ID-HERE .sqs-row .sqs-row .sqs-col-4:first-child {
- margin-left: 0;
- margin-right: 20px;
- }
- section#SECTION-ID-HERE .sqs-row .sqs-row .sqs-col-4:last-child {
- margin-right: 0;
- margin-left: 20px;
- }
- @media only screen and (max-width: 640px) {
- section#SECTION-ID-HERE .sqs-row .sqs-row .sqs-col-4 {
- width: 100%!important;
- margin: 0!important;
- }
- }
- /* If you want the buttons to be aligned with the text then use this code */
- section#SECTION-ID-HERE .sqs-row .sqs-row .sqs-col-4 {
- width: calc(~"33.33333% - 20px");
- background: #ccc;
- padding: 40px 20px 20px;
- box-sizing: border-box;
- margin: 0 10px;
- }
- /* If you want the buttons to be always on the bottom of the box then use this one */
- section#SECTION-ID-HERE .sqs-row .sqs-row .sqs-col-4 {
- width: calc(~"33.33333% - 20px");
- background: #ccc;
- padding: 40px 20px 20px;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
Advertisement
Add Comment
Please, Sign In to add comment