PluginProbe
AI Builder – Generate pages, blocks, images & translate with AI / trunk
AI Builder – Generate pages, blocks, images & translate with AI vtrunk
2.7.10 2.7.9 2.7.8 2.0.8 2.0.9 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.3.0 2.3.10 All 122 releases
ai-builder / assets / css / images.css

images.css in AI Builder – Generate pages, blocks, images & translate with AI trunk, at assets/css/images.css

124 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .image-center-columns {
2 display: flex;
3 align-items: center;
4 justify-content: center;
5 gap: 32px;
6 }
7
8 .image-side-text-content {
9 text-align: center;
10 font-size: 18px;
11 color: #222;
12 margin: 0 8px;
13 transition: color 0.2s;
14 }
15
16 .image-center-image {
17 display: flex;
18 align-items: center;
19 justify-content: center;
20 }
21
22 .image-left-text-right,
23 .image-right-text-left {
24 display: flex;
25 align-items: center;
26 gap: 40px;
27 box-shadow: 0 4px 24px rgba(0,0,0,0.06);
28 transition: box-shadow 0.2s;
29 background: #fff;
30 }
31
32 .image-left-text-right:hover,
33 .image-right-text-left:hover,
34 .image-center-text-sides:hover,
35 .image-top-text-bottom:hover {
36 box-shadow: 0 8px 32px rgba(0,0,0,0.12);
37 }
38
39 .image-left-image,
40 .image-right-image {
41 display: flex;
42 align-items: center;
43 justify-content: center;
44 }
45
46 .image-left-text-content,
47 .image-right-text-content {
48 font-size: 20px;
49 color: #222;
50 text-align: left;
51 margin: 0 8px;
52 transition: color 0.2s;
53 }
54
55 .image-top-text-bottom {
56 display: flex;
57 flex-direction: column;
58 align-items: center;
59 gap: 24px;
60 box-shadow: 0 4px 24px rgba(0,0,0,0.06);
61 background: #fff;
62 transition: box-shadow 0.2s;
63 }
64
65 .image-bottom-text-content {
66 font-size: 18px;
67 color: #222;
68 text-align: center;
69 margin-top: 8px;
70 margin-bottom: 0;
71 transition: color 0.2s;
72 }
73
74 .image-ui-rounded img,
75 .image-ui-rounded {
76 border-radius: 18px !important;
77 box-shadow: 0 2px 16px rgba(0,0,0,0.10);
78 transition: box-shadow 0.2s, transform 0.2s;
79 }
80
81 .image-ui-rounded img:hover,
82 .image-ui-rounded:hover {
83 box-shadow: 0 8px 32px rgba(0,0,0,0.18);
84 transform: translateY(-2px) scale(1.03);
85 }
86
87 @media (max-width: 900px) {
88 .image-center-columns {
89 flex-direction: column;
90 gap: 20px;
91 }
92 .image-left-text-right,
93 .image-right-text-left {
94 flex-direction: column;
95 gap: 20px;
96 }
97 .image-left-text-content,
98 .image-right-text-content {
99 text-align: center;
100 }
101 }
102
103 @media (max-width: 600px) {
104 .image-center-columns,
105 .image-left-text-right,
106 .image-right-text-left {
107 gap: 10px;
108 }
109 .image-bottom-text-content,
110 .image-side-text-content {
111 font-size: 16px;
112 }
113 .image-left-text-content,
114 .image-right-text-content {
115 font-size: 16px;
116 }
117 .image-center-text-sides,
118 .image-left-text-right,
119 .image-right-text-left,
120 .image-top-text-bottom {
121 padding-left: 12px !important;
122 padding-right: 12px !important;
123 }
124 }