| 1 |
.upk-maple-grid .upk-post-grid { |
| 2 |
display: grid; |
| 3 |
grid-gap: 20px; |
| 4 |
} |
| 5 |
.upk-maple-grid .upk-item { |
| 6 |
position: relative; |
| 7 |
overflow: hidden; |
| 8 |
display: flex; |
| 9 |
transition: all 0.3s ease; |
| 10 |
} |
| 11 |
.upk-maple-grid .upk-item:hover .upk-img { |
| 12 |
transform: scale(1.1); |
| 13 |
} |
| 14 |
.upk-maple-grid .upk-item-box { |
| 15 |
position: relative; |
| 16 |
} |
| 17 |
.upk-maple-grid .upk-image-wrap { |
| 18 |
position: relative; |
| 19 |
display: flex; |
| 20 |
} |
| 21 |
.upk-maple-grid .upk-main-image { |
| 22 |
position: relative; |
| 23 |
overflow: hidden; |
| 24 |
border-radius: 5px; |
| 25 |
width: 100%; |
| 26 |
display: flex; |
| 27 |
} |
| 28 |
.upk-maple-grid .upk-main-image .upk-img { |
| 29 |
width: 100%; |
| 30 |
height: 100%; |
| 31 |
object-fit: cover; |
| 32 |
transition: all 0.3s ease-in-out; |
| 33 |
} |
| 34 |
.upk-maple-grid .upk-category { |
| 35 |
position: absolute; |
| 36 |
top: 0; |
| 37 |
left: 0; |
| 38 |
margin: 15px; |
| 39 |
display: inline-flex; |
| 40 |
gap: 7px; |
| 41 |
flex-wrap: wrap; |
| 42 |
} |
| 43 |
.upk-maple-grid .upk-category a { |
| 44 |
background-color: #ef233c; |
| 45 |
text-decoration: none; |
| 46 |
padding: 3px 10px; |
| 47 |
border-radius: 15px; |
| 48 |
font-size: 12px; |
| 49 |
color: #ffffff; |
| 50 |
} |
| 51 |
.upk-maple-grid .upk-post-format { |
| 52 |
position: absolute; |
| 53 |
bottom: 0; |
| 54 |
right: 50px; |
| 55 |
} |
| 56 |
.upk-maple-grid .upk-post-format a { |
| 57 |
color: #fff; |
| 58 |
background-color: #ef233c; |
| 59 |
display: flex; |
| 60 |
position: absolute; |
| 61 |
padding: 10px; |
| 62 |
border-radius: 30px; |
| 63 |
cursor: pointer; |
| 64 |
transform: translate(-50%, -50%); |
| 65 |
} |
| 66 |
.upk-maple-grid .upk-post-format a i { |
| 67 |
display: flex; |
| 68 |
} |
| 69 |
.upk-maple-grid .upk-content { |
| 70 |
padding-top: 20px; |
| 71 |
width: 100%; |
| 72 |
} |
| 73 |
.upk-maple-grid .upk-meta { |
| 74 |
display: inline-flex; |
| 75 |
flex-wrap: wrap; |
| 76 |
align-items: center; |
| 77 |
margin-bottom: 15px; |
| 78 |
font-size: 13px; |
| 79 |
} |
| 80 |
.upk-maple-grid .upk-meta .upk-author { |
| 81 |
display: flex; |
| 82 |
align-items: center; |
| 83 |
} |
| 84 |
.upk-maple-grid .upk-meta .upk-author img { |
| 85 |
border-radius: 80px; |
| 86 |
margin-right: 10px; |
| 87 |
} |
| 88 |
.upk-maple-grid .upk-meta .author-name { |
| 89 |
color: #8d99ae; |
| 90 |
font-weight: 600; |
| 91 |
} |
| 92 |
.upk-maple-grid .upk-meta .upk-blog-date { |
| 93 |
position: relative; |
| 94 |
display: flex; |
| 95 |
} |
| 96 |
.upk-maple-grid .upk-meta .upk-blog-date .date { |
| 97 |
color: #8d99ae; |
| 98 |
} |
| 99 |
.upk-maple-grid .upk-meta .upk-blog-date i { |
| 100 |
margin: 0 5px; |
| 101 |
} |
| 102 |
.upk-maple-grid .upk-meta .upk-post-time { |
| 103 |
margin-left: 5px; |
| 104 |
color: #8d99ae; |
| 105 |
} |
| 106 |
.upk-maple-grid .upk-meta .upk-post-time i { |
| 107 |
margin-right: 2px; |
| 108 |
} |
| 109 |
.upk-maple-grid .upk-meta .upk-reading-time { |
| 110 |
color: #8d99ae; |
| 111 |
} |
| 112 |
.upk-maple-grid .upk-meta > div { |
| 113 |
position: relative; |
| 114 |
display: inline-flex; |
| 115 |
} |
| 116 |
.upk-maple-grid .upk-meta > div:before { |
| 117 |
content: attr(data-separator); |
| 118 |
margin: 0 8px; |
| 119 |
} |
| 120 |
.upk-maple-grid .upk-meta > div:nth-child(1)::before { |
| 121 |
display: none; |
| 122 |
} |
| 123 |
.upk-maple-grid .upk-title { |
| 124 |
width: 100%; |
| 125 |
font-size: 18px; |
| 126 |
font-weight: 600; |
| 127 |
line-height: 1.4; |
| 128 |
margin-top: 0; |
| 129 |
margin-bottom: 15px; |
| 130 |
} |
| 131 |
.upk-maple-grid .upk-title a { |
| 132 |
color: #2b2d42; |
| 133 |
} |
| 134 |
.upk-maple-grid .upk-title a:hover { |
| 135 |
color: #ef233c; |
| 136 |
} |
| 137 |
.upk-maple-grid .upk-text { |
| 138 |
color: #8d99ae; |
| 139 |
font-size: 14px; |
| 140 |
} |
| 141 |
.upk-maple-grid .upk-text P { |
| 142 |
margin: 0; |
| 143 |
} |
| 144 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+3) .upk-item-box, |
| 145 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+4) .upk-item-box, |
| 146 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+5) .upk-item-box, |
| 147 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+6) .upk-item-box, |
| 148 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2) .upk-item-box, |
| 149 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3) .upk-item-box, |
| 150 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4) .upk-item-box, |
| 151 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) .upk-item-box, |
| 152 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2) .upk-item-box, |
| 153 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4) .upk-item-box, |
| 154 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) .upk-item-box, |
| 155 |
.upk-maple-grid .upk-style-3 .upk-item:nth-child(n+1) .upk-item-box { |
| 156 |
display: flex; |
| 157 |
align-items: center; |
| 158 |
width: 100%; |
| 159 |
} |
| 160 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+3) .upk-title, |
| 161 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+4) .upk-title, |
| 162 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+5) .upk-title, |
| 163 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+6) .upk-title, |
| 164 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2) .upk-title, |
| 165 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3) .upk-title, |
| 166 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4) .upk-title, |
| 167 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) .upk-title, |
| 168 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2) .upk-title, |
| 169 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4) .upk-title, |
| 170 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) .upk-title, |
| 171 |
.upk-maple-grid .upk-style-3 .upk-item:nth-child(n+1) .upk-title { |
| 172 |
font-size: 16px; |
| 173 |
} |
| 174 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+3) .upk-category, |
| 175 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+3) .upk-post-format, |
| 176 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+3) .upk-author, |
| 177 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+3) .upk-blog-date::before, |
| 178 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+3) .upk-text, |
| 179 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+4) .upk-category, |
| 180 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+4) .upk-post-format, |
| 181 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+4) .upk-author, |
| 182 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+4) .upk-blog-date::before, |
| 183 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+4) .upk-text, |
| 184 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+5) .upk-category, |
| 185 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+5) .upk-post-format, |
| 186 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+5) .upk-author, |
| 187 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+5) .upk-blog-date::before, |
| 188 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+5) .upk-text, |
| 189 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+6) .upk-category, |
| 190 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+6) .upk-post-format, |
| 191 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+6) .upk-author, |
| 192 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+6) .upk-blog-date::before, |
| 193 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+6) .upk-text, |
| 194 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2) .upk-category, |
| 195 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2) .upk-post-format, |
| 196 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2) .upk-author, |
| 197 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2) .upk-blog-date::before, |
| 198 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2) .upk-text, |
| 199 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3) .upk-category, |
| 200 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3) .upk-post-format, |
| 201 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3) .upk-author, |
| 202 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3) .upk-blog-date::before, |
| 203 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3) .upk-text, |
| 204 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4) .upk-category, |
| 205 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4) .upk-post-format, |
| 206 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4) .upk-author, |
| 207 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4) .upk-blog-date::before, |
| 208 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4) .upk-text, |
| 209 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) .upk-category, |
| 210 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) .upk-post-format, |
| 211 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) .upk-author, |
| 212 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) .upk-blog-date::before, |
| 213 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) .upk-text, |
| 214 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2) .upk-category, |
| 215 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2) .upk-post-format, |
| 216 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2) .upk-author, |
| 217 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2) .upk-blog-date::before, |
| 218 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2) .upk-text, |
| 219 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4) .upk-category, |
| 220 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4) .upk-post-format, |
| 221 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4) .upk-author, |
| 222 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4) .upk-blog-date::before, |
| 223 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4) .upk-text, |
| 224 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) .upk-category, |
| 225 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) .upk-post-format, |
| 226 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) .upk-author, |
| 227 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) .upk-blog-date::before, |
| 228 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) .upk-text, |
| 229 |
.upk-maple-grid .upk-style-3 .upk-item:nth-child(n+1) .upk-category, |
| 230 |
.upk-maple-grid .upk-style-3 .upk-item:nth-child(n+1) .upk-post-format, |
| 231 |
.upk-maple-grid .upk-style-3 .upk-item:nth-child(n+1) .upk-author, |
| 232 |
.upk-maple-grid .upk-style-3 .upk-item:nth-child(n+1) .upk-blog-date::before, |
| 233 |
.upk-maple-grid .upk-style-3 .upk-item:nth-child(n+1) .upk-text { |
| 234 |
display: none; |
| 235 |
} |
| 236 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+3) .upk-main-image, |
| 237 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+4) .upk-main-image, |
| 238 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+5) .upk-main-image, |
| 239 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+6) .upk-main-image, |
| 240 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2) .upk-main-image, |
| 241 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3) .upk-main-image, |
| 242 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4) .upk-main-image, |
| 243 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) .upk-main-image, |
| 244 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2) .upk-main-image, |
| 245 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4) .upk-main-image, |
| 246 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) .upk-main-image, |
| 247 |
.upk-maple-grid .upk-style-3 .upk-item:nth-child(n+1) .upk-main-image { |
| 248 |
width: 150px; |
| 249 |
} |
| 250 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+3) .upk-content, |
| 251 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+4) .upk-content, |
| 252 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+5) .upk-content, |
| 253 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+6) .upk-content, |
| 254 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2) .upk-content, |
| 255 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3) .upk-content, |
| 256 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4) .upk-content, |
| 257 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) .upk-content, |
| 258 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2) .upk-content, |
| 259 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4) .upk-content, |
| 260 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) .upk-content, |
| 261 |
.upk-maple-grid .upk-style-3 .upk-item:nth-child(n+1) .upk-content { |
| 262 |
padding: 15px; |
| 263 |
} |
| 264 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+3) .upk-content-inner, |
| 265 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+4) .upk-content-inner, |
| 266 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+5) .upk-content-inner, |
| 267 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+6) .upk-content-inner, |
| 268 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2) .upk-content-inner, |
| 269 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3) .upk-content-inner, |
| 270 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4) .upk-content-inner, |
| 271 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) .upk-content-inner, |
| 272 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2) .upk-content-inner, |
| 273 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4) .upk-content-inner, |
| 274 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) .upk-content-inner, |
| 275 |
.upk-maple-grid .upk-style-3 .upk-item:nth-child(n+1) .upk-content-inner { |
| 276 |
display: flex; |
| 277 |
flex-direction: row-reverse; |
| 278 |
flex-flow: wrap-reverse; |
| 279 |
} |
| 280 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+3) .upk-meta, |
| 281 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+4) .upk-meta, |
| 282 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+5) .upk-meta, |
| 283 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+6) .upk-meta, |
| 284 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2) .upk-meta, |
| 285 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3) .upk-meta, |
| 286 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4) .upk-meta, |
| 287 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) .upk-meta, |
| 288 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2) .upk-meta, |
| 289 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4) .upk-meta, |
| 290 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) .upk-meta, |
| 291 |
.upk-maple-grid .upk-style-3 .upk-item:nth-child(n+1) .upk-meta { |
| 292 |
font-size: 13px; |
| 293 |
margin-bottom: 0; |
| 294 |
width: 100%; |
| 295 |
} |
| 296 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+3) .upk-meta .upk-blog-date, |
| 297 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+4) .upk-meta .upk-blog-date, |
| 298 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+5) .upk-meta .upk-blog-date, |
| 299 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+6) .upk-meta .upk-blog-date, |
| 300 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2) .upk-meta .upk-blog-date, |
| 301 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3) .upk-meta .upk-blog-date, |
| 302 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4) .upk-meta .upk-blog-date, |
| 303 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) .upk-meta .upk-blog-date, |
| 304 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2) .upk-meta .upk-blog-date, |
| 305 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4) .upk-meta .upk-blog-date, |
| 306 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) .upk-meta .upk-blog-date, |
| 307 |
.upk-maple-grid .upk-style-3 .upk-item:nth-child(n+1) .upk-meta .upk-blog-date { |
| 308 |
padding-left: 0px; |
| 309 |
} |
| 310 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+3) .upk-meta .upk-blog-date i, |
| 311 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+4) .upk-meta .upk-blog-date i, |
| 312 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+5) .upk-meta .upk-blog-date i, |
| 313 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+6) .upk-meta .upk-blog-date i, |
| 314 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2) .upk-meta .upk-blog-date i, |
| 315 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3) .upk-meta .upk-blog-date i, |
| 316 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4) .upk-meta .upk-blog-date i, |
| 317 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) .upk-meta .upk-blog-date i, |
| 318 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2) .upk-meta .upk-blog-date i, |
| 319 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4) .upk-meta .upk-blog-date i, |
| 320 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) .upk-meta .upk-blog-date i, |
| 321 |
.upk-maple-grid .upk-style-3 .upk-item:nth-child(n+1) .upk-meta .upk-blog-date i { |
| 322 |
margin-left: 0; |
| 323 |
} |
| 324 |
.upk-maple-grid .upk-style-1 { |
| 325 |
grid-template-columns: repeat(6, 1fr); |
| 326 |
} |
| 327 |
.upk-maple-grid .upk-style-1 .upk-item { |
| 328 |
grid-column: span 6/auto; |
| 329 |
} |
| 330 |
.upk-maple-grid .upk-style-2 { |
| 331 |
grid-template-columns: repeat(6, 1fr); |
| 332 |
} |
| 333 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+1) { |
| 334 |
grid-column: span 6/auto; |
| 335 |
grid-row: span 4/auto; |
| 336 |
} |
| 337 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2), .upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3), .upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4), .upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) { |
| 338 |
grid-column: span 6/auto; |
| 339 |
} |
| 340 |
.upk-maple-grid .upk-style-3 { |
| 341 |
grid-template-columns: repeat(1, 1fr); |
| 342 |
} |
| 343 |
.upk-maple-grid .upk-style-4 { |
| 344 |
grid-template-columns: repeat(1, 1fr); |
| 345 |
} |
| 346 |
.upk-maple-grid .upk-style-5 { |
| 347 |
grid-template-columns: repeat(6, 1fr); |
| 348 |
} |
| 349 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+1) { |
| 350 |
grid-column: span 6/auto; |
| 351 |
} |
| 352 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+1) .upk-item-box { |
| 353 |
display: block; |
| 354 |
} |
| 355 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+1) .upk-main-image { |
| 356 |
width: 100%; |
| 357 |
} |
| 358 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+1) .upk-content { |
| 359 |
padding-top: 30px; |
| 360 |
padding-left: 0px; |
| 361 |
padding-right: 0px; |
| 362 |
} |
| 363 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+1) .upk-title { |
| 364 |
font-size: 18px; |
| 365 |
} |
| 366 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+3) { |
| 367 |
grid-column: span 6/auto; |
| 368 |
grid-row: span 3/auto; |
| 369 |
} |
| 370 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2), .upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4), .upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) { |
| 371 |
grid-column: span 6/auto; |
| 372 |
} |
| 373 |
|
| 374 |
.upk-maple-content--center .upk-style-1 .upk-item:nth-child(6n+3) .upk-meta, |
| 375 |
.upk-maple-content--center .upk-style-1 .upk-item:nth-child(6n+4) .upk-meta, |
| 376 |
.upk-maple-content--center .upk-style-1 .upk-item:nth-child(6n+5) .upk-meta, |
| 377 |
.upk-maple-content--center .upk-style-1 .upk-item:nth-child(6n+6) .upk-meta, |
| 378 |
.upk-maple-content--center .upk-style-2 .upk-item:nth-child(5n+2) .upk-meta, |
| 379 |
.upk-maple-content--center .upk-style-2 .upk-item:nth-child(5n+3) .upk-meta, |
| 380 |
.upk-maple-content--center .upk-style-2 .upk-item:nth-child(5n+4) .upk-meta, |
| 381 |
.upk-maple-content--center .upk-style-2 .upk-item:nth-child(5n+5) .upk-meta, |
| 382 |
.upk-maple-content--center .upk-style-5 .upk-item:nth-child(5n+2) .upk-meta, |
| 383 |
.upk-maple-content--center .upk-style-5 .upk-item:nth-child(5n+4) .upk-meta, |
| 384 |
.upk-maple-content--center .upk-style-5 .upk-item:nth-child(5n+5) .upk-meta, |
| 385 |
.upk-maple-content--center .upk-style-3 .upk-item:nth-child(n+1) .upk-meta { |
| 386 |
justify-content: center; |
| 387 |
} |
| 388 |
|
| 389 |
.upk-maple-content--right .upk-style-1 .upk-item:nth-child(6n+3) .upk-item-box, |
| 390 |
.upk-maple-content--right .upk-style-1 .upk-item:nth-child(6n+4) .upk-item-box, |
| 391 |
.upk-maple-content--right .upk-style-1 .upk-item:nth-child(6n+5) .upk-item-box, |
| 392 |
.upk-maple-content--right .upk-style-1 .upk-item:nth-child(6n+6) .upk-item-box, |
| 393 |
.upk-maple-content--right .upk-style-2 .upk-item:nth-child(5n+2) .upk-item-box, |
| 394 |
.upk-maple-content--right .upk-style-2 .upk-item:nth-child(5n+3) .upk-item-box, |
| 395 |
.upk-maple-content--right .upk-style-2 .upk-item:nth-child(5n+4) .upk-item-box, |
| 396 |
.upk-maple-content--right .upk-style-2 .upk-item:nth-child(5n+5) .upk-item-box, |
| 397 |
.upk-maple-content--right .upk-style-5 .upk-item:nth-child(5n+2) .upk-item-box, |
| 398 |
.upk-maple-content--right .upk-style-5 .upk-item:nth-child(5n+4) .upk-item-box, |
| 399 |
.upk-maple-content--right .upk-style-5 .upk-item:nth-child(5n+5) .upk-item-box, |
| 400 |
.upk-maple-content--right .upk-style-3 .upk-item:nth-child(n+1) .upk-item-box { |
| 401 |
flex-direction: row-reverse; |
| 402 |
} |
| 403 |
.upk-maple-content--right .upk-style-1 .upk-item:nth-child(6n+3) .upk-meta, |
| 404 |
.upk-maple-content--right .upk-style-1 .upk-item:nth-child(6n+4) .upk-meta, |
| 405 |
.upk-maple-content--right .upk-style-1 .upk-item:nth-child(6n+5) .upk-meta, |
| 406 |
.upk-maple-content--right .upk-style-1 .upk-item:nth-child(6n+6) .upk-meta, |
| 407 |
.upk-maple-content--right .upk-style-2 .upk-item:nth-child(5n+2) .upk-meta, |
| 408 |
.upk-maple-content--right .upk-style-2 .upk-item:nth-child(5n+3) .upk-meta, |
| 409 |
.upk-maple-content--right .upk-style-2 .upk-item:nth-child(5n+4) .upk-meta, |
| 410 |
.upk-maple-content--right .upk-style-2 .upk-item:nth-child(5n+5) .upk-meta, |
| 411 |
.upk-maple-content--right .upk-style-5 .upk-item:nth-child(5n+2) .upk-meta, |
| 412 |
.upk-maple-content--right .upk-style-5 .upk-item:nth-child(5n+4) .upk-meta, |
| 413 |
.upk-maple-content--right .upk-style-5 .upk-item:nth-child(5n+5) .upk-meta, |
| 414 |
.upk-maple-content--right .upk-style-3 .upk-item:nth-child(n+1) .upk-meta { |
| 415 |
justify-content: flex-end; |
| 416 |
} |
| 417 |
|
| 418 |
.upk-global-link-yes .upk-maple-grid .upk-item:hover { |
| 419 |
cursor: pointer; |
| 420 |
} |
| 421 |
|
| 422 |
@media (min-width: 768px) { |
| 423 |
.upk-maple-grid .upk-title { |
| 424 |
font-size: 24px; |
| 425 |
} |
| 426 |
.upk-maple-grid .upk-text { |
| 427 |
font-size: 16px; |
| 428 |
margin-bottom: 20px; |
| 429 |
} |
| 430 |
.upk-maple-grid .upk-meta { |
| 431 |
font-size: 14px; |
| 432 |
} |
| 433 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+3) .upk-title, |
| 434 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+4) .upk-title, |
| 435 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+5) .upk-title, |
| 436 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(6n+6) .upk-title, |
| 437 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2) .upk-title, |
| 438 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3) .upk-title, |
| 439 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4) .upk-title, |
| 440 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) .upk-title, |
| 441 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2) .upk-title, |
| 442 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4) .upk-title, |
| 443 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) .upk-title, |
| 444 |
.upk-maple-grid .upk-style-3 .upk-item:nth-child(n+1) .upk-title { |
| 445 |
font-size: 18px; |
| 446 |
} |
| 447 |
.upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+1), .upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+2), .upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+3), .upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+4), .upk-maple-grid .upk-style-2 .upk-item:nth-child(5n+5) { |
| 448 |
grid-column: span 3/auto; |
| 449 |
} |
| 450 |
.upk-maple-grid .upk-style-4, |
| 451 |
.upk-maple-grid .upk-style-3 { |
| 452 |
grid-template-columns: repeat(2, 1fr); |
| 453 |
} |
| 454 |
.upk-maple-grid .upk-style-1 .upk-item:nth-child(n+1) { |
| 455 |
grid-column: span 3/auto; |
| 456 |
} |
| 457 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+1) .upk-image-wrap, |
| 458 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+1) .upk-content { |
| 459 |
width: 50%; |
| 460 |
} |
| 461 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+1) .upk-item-box { |
| 462 |
display: flex; |
| 463 |
align-items: center; |
| 464 |
} |
| 465 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+1) .upk-post-format { |
| 466 |
bottom: 50px; |
| 467 |
right: 0px; |
| 468 |
} |
| 469 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+1) .upk-content { |
| 470 |
padding: 0 30px; |
| 471 |
} |
| 472 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+1) .upk-title { |
| 473 |
font-size: 24px; |
| 474 |
} |
| 475 |
.upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+2), .upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+3), .upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+4), .upk-maple-grid .upk-style-5 .upk-item:nth-child(5n+5) { |
| 476 |
grid-column: span 3/auto; |
| 477 |
} |
| 478 |
} |