This file contains hidden or 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
| @media (max-width: 768px) { | |
| .reverse-mobile { | |
| flex-direction: column-reverse; | |
| } | |
| } |
This file contains hidden or 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
| .wp-block-navigation .wp-block-navigation-item__label:hover { | |
| background-color: #CE4520; | |
| border-radius: 25px; | |
| color:white; | |
| } | |
| .wp-block-navigation .wp-block-navigation-item__label { | |
| padding:10px; | |
| } |
This file contains hidden or 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
| .wp-block-image | |
| { | |
| border-radius: 76% 24% 67% 33% / 30% 30% 70% 70% ; | |
| } | |
| .wp-block-image:nth-child(2) | |
| { | |
| border-radius: 56% 44% 66% 34% / 52% 50% 50% 48% | |
| } |
This file contains hidden or 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
| .roundedpics { | |
| border-radius: 25px; | |
| } |
This file contains hidden or 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
| .wp-block-cover.alignfull, | |
| .wp-block-columns { | |
| margin-bottom: 0; | |
| padding-bottom: 0; | |
| } |
This file contains hidden or 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
| .glass | |
| { | |
| background: rgba( 255, 255, 255, 0.25 ); | |
| box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 ); | |
| backdrop-filter: blur( 4px ); | |
| -webkit-backdrop-filter: blur( 4px ); | |
| border-radius: 10px; | |
| border: 1px solid rgba( 255, 255, 255, 0.18 ); |
This file contains hidden or 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
| .background { | |
| background-color: #533cd245; | |
| padding:45px; | |
| box-shadow: 1px 1px 50px 1px #000; | |
| transition: box-shadow 0.3s ease-in-out; | |
| } |
This file contains hidden or 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
| #masthead > .col-full, | |
| #masthead .site-header-cart { | |
| display: none; | |
| } |
This file contains hidden or 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
| /*** Take out the divider line between content and sidebar ***/ | |
| #main-content .container:before {background: none;} | |
| /*** Hide Sidebar ***/ | |
| #sidebar {display:none;} | |
| /*** Expand the content area to fullwidth ***/ | |
| @media (min-width: 981px){ | |
| #left-area { | |
| width: 100%; |
This file contains hidden or 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
| remove_action( 'storefront_post_content_before', 'storefront_post_thumbnail', 10 ); |