PluginProbe
Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News / 4.0.7
Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News v4.0.7
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 2.3.5 2.3.6 2.4.0 2.4.1 2.4.10 2.4.11 2.4.12 2.4.13 2.4.14 2.4.15 2.4.16 2.4.17 2.4.18 2.4.19 2.4.2 2.4.20 2.4.21 All 88 releases
post-carousel / src / admin / styles / _about-us.scss

_about-us.scss in Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News 4.0.7, at src/admin/styles/_about-us.scss

116 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2
3 // About Us Page Styles
4 .spspc-more-plugins-section {
5 margin-top: 60px !important;
6 }
7
8 .spspc-more-plugins-header {
9 text-align: center;
10 margin-bottom: 40px !important;
11 }
12
13 .spspc-more-plugins-title {
14 font-size: 24px;
15 font-weight: 500;
16 line-height: 1.4;
17 color: #1e1e1e;
18 margin: 0 0 10px 0;
19 }
20
21 .spspc-more-plugins-subtitle {
22 font-size: 14px;
23 font-weight: 400;
24 line-height: 20px;
25 color: #4e4f52;
26 margin: 0;
27 }
28
29 .spspc-more-plugins-grid {
30 display: grid;
31 grid-template-columns: repeat(3, 1fr);
32 gap: 24px;
33
34 @media (max-width: 992px) {
35 grid-template-columns: repeat(2, 1fr);
36 }
37
38 @media (max-width: 640px) {
39 grid-template-columns: 1fr;
40 }
41 }
42
43 .spspc-plugin-card {
44 display: flex;
45 flex-direction: column;
46 background: #ffffff;
47 border-radius: 8px;
48 padding: 24px !important;
49 text-decoration: none;
50 transition: box-shadow 0.2s ease, border-color 0.2s ease;
51 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
52 border: 1px solid #e0e0e0;
53 position: relative;
54
55 &:hover {
56 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
57 border-color: #00a1ff;
58 }
59
60 .spspc-plugin-card-icon {
61 margin-bottom: 16px !important;
62
63 img {
64 width: 48px;
65 }
66
67 svg {
68 border-radius: 4px;
69 overflow: hidden;
70 }
71 }
72
73 .spspc-plugin-card-content {
74 .spspc-plugin-card-title {
75 font-size: 20px;
76 font-weight: 600;
77 color: #333333;
78 margin: 0 0 8px 0;
79 line-height: 1.3;
80 }
81
82 .spspc-plugin-card-desc {
83 font-size: 14px;
84 line-height: 1.5;
85 color: #666666;
86 margin: 0;
87 }
88 }
89
90 .spspc-plugin-card-arrow {
91 position: absolute;
92 top: 24px;
93 right: 24px;
94 opacity: 0;
95 transition: opacity 0.2s ease;
96 color: #00a1ff;
97 width: 32px;
98 height: 32px;
99 border: 1px solid #00a2ff68;
100 border-radius: 50%;
101 display: flex;
102 align-items: center;
103 justify-content: center;
104
105 svg {
106 display: block;
107 width: 16px;
108 height: 16px;
109 }
110 }
111
112 &:hover .spspc-plugin-card-arrow {
113 opacity: 1;
114 }
115 }
116