PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.5.0
Easy Elements for Elementor – Addons & Website Templates v1.5.0
1.5.3 1.5.2 1.5.1 1.5.0 1.4.9 1.4.6 1.4.7 1.4.8 1.4.5 1.4.4 1.4.3 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 All 47 releases
easy-elements / widgets / post-author / css / post-author.scss

post-author.scss in Easy Elements for Elementor – Addons & Website Templates 1.5.0, at widgets/post-author/css/post-author.scss

47 lines 945 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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