post-author.scss in Easy Elements for Elementor – Addons & Website Templates 1.5.0, at widgets/post-author/css/post-author.scss
| 1 | :root { |
| 2 | --e-global-color-primary: #FFD012; |
| 3 | --e-global-color-secondary: #0B3665; |
| 4 | } |
| 5 | |
| 6 | .eel-author-info{ |
| 7 | display: inline-flex; |
| 8 | .eel-author-image{ |
| 9 | max-width: max-content; |
| 10 | min-width: max-content; |
| 11 | img{ |
| 12 | display: block; |
| 13 | border-radius: 16px; |
| 14 | } |
| 15 | } |
| 16 | .eel-author-description{ |
| 17 | flex: 0 0 91%; |
| 18 | max-width: 91%; |
| 19 | padding-left: 14px; |
| 20 | } |
| 21 | .eel-author-name{ |
| 22 | margin: 0; |
| 23 | font-size: 24px; |
| 24 | } |
| 25 | .eel-author-bio{ |
| 26 | margin: 0; |
| 27 | } |
| 28 | a{ |
| 29 | text-decoration: none; |
| 30 | color: var(--e-global-color-secondary); |
| 31 | &:hover{ |
| 32 | opacity: 0.8; |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | @media (max-width: 767px) { |
| 38 | .eel-author-info { |
| 39 | display: block; |
| 40 | } |
| 41 | .eel-author-info .eel-author-description { |
| 42 | flex: 0 0 100%; |
| 43 | max-width: 100%; |
| 44 | margin-top: 15px; |
| 45 | } |
| 46 | } |
| 47 |