| 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 |
|