| @@ -1,1915 +1,2464 @@ | ||
| 1 | -/*---------------------------------------------------- | |
| 2 | -@File: Default Styles | |
| 3 | - | |
| 4 | -This file contains the styling for the actual template, this | |
| 5 | -is the file you need to edit to change the look of the | |
| 6 | -template. | |
| 7 | -/*===================================================================== | |
| 8 | -@Template Name: Ama | |
| 9 | - | |
| 10 | -@Default Styles | |
| 11 | -Table of Content: | |
| 12 | -01/ Variables | |
| 13 | -92/ Predefine | |
| 14 | -03/ forumPosts | |
| 15 | -04/ forum | |
| 16 | -05/ forums | |
| 17 | - | |
| 18 | - | |
| 19 | -=====================================================================*/ | |
| 20 | -:root { | |
| 21 | - --rob: "Roboto", sans-serif; | |
| 22 | - --great: "Great Vibes", cursive; | |
| 23 | - --bg_gradient: linear-gradient(45deg, #F5FDFF, #FEEFEC); | |
| 24 | - --bbpc_brand_color: var(--bbpc_brand_color_opt); | |
| 25 | - --h_title: #1d2746; | |
| 26 | - --p_color: #6b707f; | |
| 27 | - --bs-white: #fff; | |
| 28 | - --black_25: #f9f9f9; | |
| 29 | - --black_50: #f2f2f2; | |
| 30 | - --black_75: #eeeeee; | |
| 31 | - --black_90: #e0e6f0; | |
| 32 | - --black_100: #d6d9dc; | |
| 33 | - --black_150: #c8ccd0; | |
| 34 | - --black_200: #bbc0c4; | |
| 35 | - --black_300: #9fa6ad; | |
| 36 | - --black_350: #9199a1; | |
| 37 | - --black_400: #848d95; | |
| 38 | - --black_500: #6a737c; | |
| 39 | - --black_600: #535a60; | |
| 40 | - --black_700: #3c4146; | |
| 41 | - --black_750: #2f3337; | |
| 42 | - --black_800: #242729; | |
| 43 | - --black_900: #0c0d0e; | |
| 44 | - --bbpc_color: #078669; | |
| 45 | - --baseColor2: #4a6ee0; | |
| 46 | -} | |
| 47 | - | |
| 48 | -/*font Variables*/ | |
| 49 | -/**=== Functions ===**/ | |
| 50 | -.col-md-offset-right-1, | |
| 51 | -.col-lg-offset-right-1 { | |
| 52 | - margin-right: 8.33333333%; | |
| 53 | -} | |
| 54 | - | |
| 55 | -.community-post { | |
| 56 | - border-radius: 6px; | |
| 57 | - box-shadow: 0 2px 4px 0 rgba(2, 47, 57, 0.1); | |
| 58 | - padding: 23px 30px; | |
| 59 | - display: flex; | |
| 60 | - background: var(--bs-white); | |
| 61 | - align-items: center; | |
| 62 | - justify-content: space-between; | |
| 63 | - margin-bottom: 10px; | |
| 64 | - transition: all 0.3s ease-in-out; | |
| 65 | - border: 1px solid var(--black_50); | |
| 66 | -} | |
| 67 | -.community-post:hover { | |
| 68 | - box-shadow: 0 24px 40px 0 rgba(2, 47, 57, 0.12); | |
| 69 | - border-color: #eef3f6; | |
| 70 | - transform: translateX(10px); | |
| 71 | -} | |
| 72 | -.community-post .post-content { | |
| 73 | - display: flex; | |
| 74 | - align-items: center; | |
| 75 | - flex-wrap: wrap; | |
| 76 | -} | |
| 77 | -.community-post .post-content .author-avatar { | |
| 78 | - margin-right: 25px; | |
| 79 | - border-radius: 50%; | |
| 80 | - overflow: hidden; | |
| 81 | - margin-top: -2px; | |
| 82 | -} | |
| 83 | -.community-post .post-content .entry-content { | |
| 84 | - color: var(--black_600); | |
| 85 | - font-size: 16px; | |
| 86 | - font-family: "Roboto", sans-serif; | |
| 87 | -} | |
| 88 | -.community-post .post-content img { | |
| 89 | - border-radius: 50%; | |
| 90 | -} | |
| 91 | - | |
| 92 | -.community-post.forum-item { | |
| 93 | - padding: 23px 15px; | |
| 94 | -} | |
| 95 | -.community-post.forum-item .post-content p { | |
| 96 | - font-size: 14px; | |
| 97 | - line-height: 1.3; | |
| 98 | -} | |
| 99 | -@media (max-width: 667px) { | |
| 100 | - .community-post { | |
| 101 | - display: block; | |
| 102 | - } | |
| 103 | -} | |
| 104 | -@media (max-width: 420px) { | |
| 105 | - .community-post { | |
| 106 | - padding: 20px 15px; | |
| 107 | - } | |
| 108 | -} | |
| 109 | -.community-post .post-content .author-avatar.forum-icon { | |
| 110 | - border-radius: 0; | |
| 111 | -} | |
| 112 | -.community-post .post-content .author-avatar.forum-icon img { | |
| 113 | - padding: 2px; | |
| 114 | -} | |
| 115 | -@media (max-width: 667px) { | |
| 116 | - .community-post .post-content .author-avatar { | |
| 117 | - margin-right: 20px; | |
| 118 | - } | |
| 119 | -} | |
| 120 | -@media (max-width: 420px) { | |
| 121 | - .community-post .post-content .author-avatar { | |
| 122 | - margin-right: 15px; | |
| 123 | - } | |
| 124 | -} | |
| 125 | -.community-post .post-content .entry-content { | |
| 126 | - flex: 2; | |
| 127 | -} | |
| 128 | -.community-post .post-content .entry-content .post-title { | |
| 129 | - font-size: 18px; | |
| 130 | - font-weight: 500; | |
| 131 | - margin: auto; | |
| 132 | - margin-bottom: 0; | |
| 133 | - line-height: 1.7; | |
| 134 | -} | |
| 135 | -.community-post .post-content .entry-content .post-title a { | |
| 136 | - text-decoration: none; | |
| 137 | -} | |
| 138 | -.community-post .post-content .entry-content .post-title a:hover { | |
| 139 | - color: var(--bbpc_brand_color); | |
| 140 | -} | |
| 141 | -.community-post .post-content .entry-content p { | |
| 142 | - margin: 0; | |
| 143 | -} | |
| 144 | -@media (max-width: 667px) { | |
| 145 | - .community-post .post-meta-wrapper { | |
| 146 | - margin-top: 15px; | |
| 147 | - margin-left: 70px; | |
| 148 | - } | |
| 149 | -} | |
| 150 | -.community-post .post-meta-wrapper .post-meta-info { | |
| 151 | - margin: 0; | |
| 152 | - padding: 0; | |
| 153 | - list-style: none; | |
| 154 | -} | |
| 155 | -@media (max-width: 991px) { | |
| 156 | - .community-post .post-meta-wrapper .post-meta-info li:not(:last-child) { | |
| 157 | - margin-right: 20px; | |
| 158 | - } | |
| 159 | -} | |
| 160 | -.community-post .post-meta-wrapper .post-meta-info li a { | |
| 161 | - display: block; | |
| 162 | - color: var(--black_600); | |
| 163 | -} | |
| 164 | -.community-post .post-meta-wrapper .post-meta-info li a i { | |
| 165 | - margin-right: 10px; | |
| 166 | -} | |
| 167 | -.community-post .post-meta-wrapper .post-meta-info li a:hover { | |
| 168 | - color: var(--bbpc_brand_color); | |
| 169 | -} | |
| 170 | -.community-post.style-two { | |
| 171 | - margin-bottom: 0; | |
| 172 | - border-radius: 0; | |
| 173 | - box-shadow: none; | |
| 174 | - position: relative; | |
| 175 | -} | |
| 176 | -.community-post.style-two .entry-content .post-title { | |
| 177 | - font-size: 16px; | |
| 178 | -} | |
| 179 | -.community-post.style-two .post-meta-wrapper .post-meta-info li i { | |
| 180 | - transition: all 0.3s ease-in-out; | |
| 181 | -} | |
| 182 | -.community-post.style-two .post-meta-wrapper .post-meta-info li:nth-child(2):hover a { | |
| 183 | - color: #b1b5c0; | |
| 184 | -} | |
| 185 | -.community-post.style-two .post-meta-wrapper .post-meta-info li:nth-child(2):hover i { | |
| 186 | - color: #f9ae44; | |
| 187 | -} | |
| 188 | -.community-post.style-two .com-featured { | |
| 189 | - position: absolute; | |
| 190 | - right: 0; | |
| 191 | - top: -2px; | |
| 192 | - height: 30px; | |
| 193 | - width: 30px; | |
| 194 | - z-index: 2; | |
| 195 | - text-align: center; | |
| 196 | - color: #fff; | |
| 197 | - padding: 0 15px; | |
| 198 | -} | |
| 199 | -.community-post.style-two .com-featured i { | |
| 200 | - z-index: 22; | |
| 201 | - position: relative; | |
| 202 | - font-size: 14px; | |
| 203 | -} | |
| 204 | -.community-post.style-two .com-featured:after { | |
| 205 | - content: ""; | |
| 206 | - top: 0; | |
| 207 | - position: absolute; | |
| 208 | - right: 0; | |
| 209 | - width: 0; | |
| 210 | - height: 0; | |
| 211 | - border-left: 30px solid transparent; | |
| 212 | - border-right: 0 solid transparent; | |
| 213 | - border-top: 30px solid #00ae69; | |
| 214 | - z-index: 1; | |
| 215 | -} | |
| 216 | -.community-post.style-two .cat-wrap { | |
| 217 | - display: inline-block; | |
| 218 | - vertical-align: 3px; | |
| 219 | -} | |
| 220 | -.community-post .meta { | |
| 221 | - margin: 0; | |
| 222 | - padding: 0; | |
| 223 | - list-style: none; | |
| 224 | -} | |
| 225 | -.community-post .meta li img { | |
| 226 | - display: inline-block; | |
| 227 | - vertical-align: -2px; | |
| 228 | -} | |
| 229 | -.community-post .meta li i, | |
| 230 | -.community-post .meta li img { | |
| 231 | - margin-right: 10px; | |
| 232 | - font-size: 14px; | |
| 233 | -} | |
| 234 | -.community-post .meta li a { | |
| 235 | - font-size: 14px; | |
| 236 | - color: #838793; | |
| 237 | -} | |
| 238 | -.community-post .meta li a:hover { | |
| 239 | - color: var(--bbpc_brand_color); | |
| 240 | -} | |
| 241 | - | |
| 242 | -.community-post .post-meta-wrapper .post-meta-info li:first-child { | |
| 243 | - margin-right: 40px; | |
| 244 | -} | |
| 245 | - | |
| 246 | -.community-post .post-meta-wrapper .post-meta-info li { | |
| 247 | - display: inline-block; | |
| 248 | -} | |
| 249 | - | |
| 250 | -.forum-post-content .forum-post-btm .taxonomy i, | |
| 251 | -.forum-post-content .forum-post-btm .taxonomy img, | |
| 252 | -.community-post .post-meta-wrapper .post-meta-info li a i, | |
| 253 | -.community-post .post-meta-wrapper .post-meta-info li a img, | |
| 254 | -.community-post.style-two .meta li i, | |
| 255 | -.community-post.style-two .meta li img { | |
| 256 | - margin-right: 5px; | |
| 257 | -} | |
| 258 | - | |
| 259 | -.post-header .category-menu li i, | |
| 260 | -.community-post .post-meta-wrapper .post-meta-info li a i { | |
| 261 | - font-size: 14px; | |
| 262 | -} | |
| 263 | - | |
| 264 | -.forum-category-area .col-custom { | |
| 265 | - width: 20%; | |
| 266 | -} | |
| 267 | -.forum-category-area .single-category-widget { | |
| 268 | - box-shadow: 0 1.6px 3.5px 0 rgba(51, 77, 114, 0.1490196078), 0 0.5px 1px 0 rgba(51, 77, 114, 0.1019607843); | |
| 269 | - background-color: #fff; | |
| 270 | - border-radius: 10px; | |
| 271 | - text-align: center; | |
| 272 | - padding: 25px; | |
| 273 | - transition: all 0.3s ease-out; | |
| 274 | -} | |
| 275 | -.forum-category-area .single-category-widget:hover { | |
| 276 | - box-shadow: 0 20px 20px 0 rgba(51, 77, 114, 0.0901960784); | |
| 277 | -} | |
| 278 | -.forum-category-area .single-category-widget:hover h5 { | |
| 279 | - color: var(--bbpc_brand_color) !important; | |
| 280 | -} | |
| 281 | -.forum-category-area .single-category-widget h5 { | |
| 282 | - font-size: 18px; | |
| 283 | - text-transform: capitalize; | |
| 284 | - font-family: var(--rob); | |
| 285 | - font-weight: 500; | |
| 286 | - line-height: 1.3; | |
| 287 | - color: #171d24; | |
| 288 | - margin-bottom: 0; | |
| 289 | - margin-top: 23px; | |
| 290 | - transition: all 0.3s ease-out; | |
| 291 | -} | |
| 292 | - | |
| 293 | -.forum-category-area .col-custom { | |
| 294 | - margin-bottom: 30px; | |
| 295 | -} | |
| 296 | -.forum-category-area .col-custom.wow.fadeInUp { | |
| 297 | - padding: 0 12px; | |
| 298 | -} | |
| 299 | - | |
| 300 | -.communities-boxes { | |
| 301 | - display: flex; | |
| 302 | - flex-wrap: wrap; | |
| 303 | - margin: 0 -30px; | |
| 304 | - gap: 30px; | |
| 305 | -} | |
| 306 | -@media (max-width: 1025px) { | |
| 307 | - .communities-boxes { | |
| 308 | - margin: 0 -10px; | |
| 309 | - } | |
| 310 | -} | |
| 311 | -@media (max-width: 992px) { | |
| 312 | - .communities-boxes { | |
| 313 | - flex-wrap: wrap; | |
| 314 | - justify-content: center; | |
| 315 | - width: calc(100% + 30px); | |
| 316 | - } | |
| 317 | -} | |
| 318 | -@media (max-width: 420px) { | |
| 319 | - .communities-boxes { | |
| 320 | - width: calc(100% + 15px); | |
| 321 | - } | |
| 322 | -} | |
| 323 | -.communities-boxes .com-box { | |
| 324 | - text-align: center; | |
| 325 | - margin-bottom: 57px; | |
| 326 | - width: 20%; | |
| 327 | - flex: 0 0 200px; | |
| 328 | -} | |
| 329 | -@media (max-width: 1200px) { | |
| 330 | - .communities-boxes .com-box { | |
| 331 | - flex: 0 0 165px; | |
| 332 | - } | |
| 333 | -} | |
| 334 | -@media (max-width: 991px) { | |
| 335 | - .communities-boxes .com-box { | |
| 336 | - flex: 0 0 180px; | |
| 337 | - } | |
| 338 | -} | |
| 339 | -@media (max-width: 768px) { | |
| 340 | - .communities-boxes .com-box { | |
| 341 | - flex: 0 0 185px; | |
| 342 | - } | |
| 343 | -} | |
| 344 | -@media (max-width: 426px) { | |
| 345 | - .communities-boxes .com-box { | |
| 346 | - flex: 0 0 170px; | |
| 347 | - margin-bottom: 30px; | |
| 348 | - } | |
| 349 | -} | |
| 350 | -.communities-boxes .com-box .icon-container { | |
| 351 | - border-radius: 6px; | |
| 352 | - background: var(--bs-white); | |
| 353 | - box-shadow: 0 40px 70px 0 rgba(2, 47, 57, 0.1); | |
| 354 | - display: flex; | |
| 355 | - align-items: center; | |
| 356 | - justify-content: center; | |
| 357 | - height: 100px; | |
| 358 | - width: 100px; | |
| 359 | - margin: 0 auto 20px; | |
| 360 | -} | |
| 361 | -.communities-boxes .com-box .com-box-content .title { | |
| 362 | - font-size: 20px; | |
| 363 | - line-height: 26px; | |
| 364 | - font-weight: 500; | |
| 365 | - color: var(--black_800); | |
| 366 | - margin-bottom: 5px; | |
| 367 | - transition: all 0.3s ease-in-out; | |
| 368 | - letter-spacing: normal; | |
| 369 | - margin-top: 10px; | |
| 370 | -} | |
| 371 | -.communities-boxes .com-box .com-box-content .title a { | |
| 372 | - color: var(--black_800); | |
| 373 | -} | |
| 374 | -.communities-boxes .com-box .com-box-content .title a:hover { | |
| 375 | - color: var(--bbpc_brand_color); | |
| 376 | - text-decoration: none; | |
| 377 | -} | |
| 378 | -.communities-boxes .com-box .com-box-content .title:hover { | |
| 379 | - color: var(--bbpc_brand_color); | |
| 380 | -} | |
| 381 | -.communities-boxes .com-box .com-box-content .total-post { | |
| 382 | - color: var(--p_color); | |
| 383 | - font-size: 14px; | |
| 384 | - margin-top: 0; | |
| 385 | -} | |
| 386 | - | |
| 387 | -.more-communities { | |
| 388 | - padding: 22px 0; | |
| 389 | - border-top: 1px solid #e8ecee; | |
| 390 | - border-bottom: 1px solid #e8ecee; | |
| 391 | -} | |
| 392 | -.more-communities .collapse-wrap { | |
| 393 | - margin-top: 80px; | |
| 394 | - display: none; | |
| 395 | -} | |
| 396 | -.more-communities .collapse-btn-wrap { | |
| 397 | - text-align: center; | |
| 398 | - display: table; | |
| 399 | - color: var(--black_600); | |
| 400 | - font-weight: 500; | |
| 401 | - margin: auto; | |
| 402 | -} | |
| 403 | -.more-communities .collapse-btn-wrap:hover { | |
| 404 | - text-decoration: none; | |
| 405 | - color: var(--black_800); | |
| 406 | -} | |
| 407 | -.more-communities .collapse-btn-wrap svg { | |
| 408 | - position: relative; | |
| 409 | - vertical-align: middle; | |
| 410 | - display: inline; | |
| 411 | -} | |
| 412 | -.more-communities .collapse-btn-wrap .icon_plus path, .more-communities .collapse-btn-wrap .icon_plus line, .more-communities .collapse-btn-wrap .icon_minus path, .more-communities .collapse-btn-wrap .icon_minus line { | |
| 413 | - stroke: var(--bbpc_brand_color); | |
| 414 | -} | |
| 415 | -.more-communities .collapse-btn-wrap .icon_minus { | |
| 416 | - display: none; | |
| 417 | -} | |
| 418 | -.more-communities .collapse-btn-wrap.active .icon_plus { | |
| 419 | - display: none; | |
| 420 | -} | |
| 421 | -.more-communities .collapse-btn-wrap.active .icon_minus { | |
| 422 | - display: initial; | |
| 423 | -} | |
| 424 | - | |
| 425 | -body.body_dark .communities-boxes .com-box .com-box-content .title a { | |
| 426 | - color: #fff; | |
| 427 | -} | |
| 428 | -body.body_dark .communities-boxes .com-box .com-box-content .title a:hover { | |
| 429 | - color: var(--bbpc_brand_color); | |
| 430 | -} | |
| 431 | -body.body_dark .communities-boxes .com-box .com-box-content .total-post { | |
| 432 | - color: #8b8b8b; | |
| 433 | -} | |
| 434 | -body.body_dark .more-communities { | |
| 435 | - border-color: #272727; | |
| 436 | -} | |
| 437 | -body.body_dark .single-forum-post-widget .post-info div { | |
| 438 | - color: #848d95; | |
| 439 | -} | |
| 440 | -body.body_dark .single-forum-post-widget .post-info .post-category a { | |
| 441 | - color: #848d95; | |
| 442 | -} | |
| 443 | -body.body_dark .single-forum-post-widget .post-info .post-category a:hover { | |
| 444 | - color: var(--bbpc_brand_color); | |
| 445 | -} | |
| 446 | -body.body_dark .community-area .nav-tabs .nav-item button.active { | |
| 447 | - color: #fff; | |
| 448 | -} | |
| 449 | - | |
| 450 | -/** === Widgets === **/ | |
| 451 | -.widget_display_stats dl dt { | |
| 452 | - float: left; | |
| 453 | - clear: left; | |
| 454 | - margin: 0 0 10px; | |
| 455 | - font-weight: 500; | |
| 456 | -} | |
| 457 | - | |
| 458 | -.widget_display_stats dl dd { | |
| 459 | - float: right; | |
| 460 | - margin: 0; | |
| 461 | -} | |
| 462 | - | |
| 463 | -.widget_display_replies li:before { | |
| 464 | - font-family: eleganticons; | |
| 465 | - content: "w"; | |
| 466 | - font-size: 15px !important; | |
| 467 | - margin: 0 12px 0 0 !important; | |
| 468 | - padding: 0px !important; | |
| 469 | - line-height: 23px; | |
| 470 | -} | |
| 471 | - | |
| 472 | -.widget_display_topics li div { | |
| 473 | - color: var(--black_400); | |
| 474 | -} | |
| 475 | -.widget_display_topics li::before { | |
| 476 | - font-family: eleganticons; | |
| 477 | - content: "b"; | |
| 478 | - margin: -3px 12px 0 0; | |
| 479 | - font-size: 15px; | |
| 480 | - color: var(--black_800); | |
| 481 | - position: absolute; | |
| 482 | - left: 0; | |
| 483 | - top: 0; | |
| 484 | -} | |
| 485 | - | |
| 486 | -.widget_display_topics .bbp-forum-title, | |
| 487 | -.widget_display_replies .bbp-forum-title { | |
| 488 | - display: inline-block; | |
| 489 | - line-height: 1.36; | |
| 490 | - color: var(--black_900); | |
| 491 | -} | |
| 492 | - | |
| 493 | -.widget_display_topics li { | |
| 494 | - padding-left: 30px; | |
| 495 | -} | |
| 496 | - | |
| 497 | -.widget_display_topics li, | |
| 498 | -.widget_display_replies li { | |
| 499 | - position: relative; | |
| 500 | - margin-bottom: 10px; | |
| 501 | - padding-bottom: 10px; | |
| 502 | - border-bottom: 1px solid #e5e7e9; | |
| 503 | - font-size: 16px; | |
| 504 | -} | |
| 505 | -.widget_display_topics li time, | |
| 506 | -.widget_display_replies li time { | |
| 507 | - color: var(--black_400); | |
| 508 | - display: block; | |
| 509 | - font-size: 14px; | |
| 510 | -} | |
| 511 | -.widget_display_topics li div, | |
| 512 | -.widget_display_replies li div { | |
| 513 | - font-size: 14px; | |
| 514 | -} | |
| 515 | - | |
| 516 | -.widget_display_topics li a, | |
| 517 | -.widget_display_replies li a { | |
| 518 | - color: var(--black_800); | |
| 519 | -} | |
| 520 | -.widget_display_topics li a .bbp-author-avatar img, | |
| 521 | -.widget_display_replies li a .bbp-author-avatar img { | |
| 522 | - border-radius: 50px; | |
| 523 | -} | |
| 524 | - | |
| 525 | -.widget_display_replies li .bbp-author-avatar { | |
| 526 | - margin-right: 5px; | |
| 527 | -} | |
| 528 | - | |
| 529 | -.widget_display_topics li a:hover, | |
| 530 | -.widget_display_replies li a:hover { | |
| 531 | - color: var(--bbpc_brand_color); | |
| 532 | -} | |
| 533 | - | |
| 534 | -.bbp-logged-in .avatar { | |
| 535 | - float: left; | |
| 536 | - margin: 0 15px 0 0; | |
| 537 | - border-radius: 99%; | |
| 538 | -} | |
| 539 | - | |
| 540 | -.bbp-logged-in h4 { | |
| 541 | - font-weight: normal; | |
| 542 | - font-size: 18px; | |
| 543 | - clear: none; | |
| 544 | - margin: 0 0 5px; | |
| 545 | -} | |
| 546 | - | |
| 547 | -.bbp-logged-in h4 a { | |
| 548 | - color: #333; | |
| 549 | - font-weight: 500; | |
| 550 | -} | |
| 551 | - | |
| 552 | -.bbp-logged-in a.button.logout-link:hover, | |
| 553 | -.bbp-logged-in h4 a:hover { | |
| 554 | - color: var(--bbpc_brand_color); | |
| 555 | -} | |
| 556 | - | |
| 557 | -.bbp-logged-in a.button.logout-link:hover, | |
| 558 | -.bbp-logged-in a.button.logout-link { | |
| 559 | - color: #666; | |
| 560 | -} | |
| 561 | - | |
| 562 | -.forum-post-content .content img { | |
| 563 | - max-width: 100%; | |
| 564 | - height: auto; | |
| 565 | -} | |
| 566 | - | |
| 567 | -ul.bbp-topics-widget.newness img { | |
| 568 | - border-radius: 50%; | |
| 569 | - margin: 5px; | |
| 570 | -} | |
| 571 | - | |
| 572 | -.bbp-submit-wrapper { | |
| 573 | - float: left; | |
| 574 | - margin-top: 0; | |
| 575 | -} | |
| 576 | - | |
| 577 | -.forum-post-content .forum-post-btm .taxonomy.forum-post-cat { | |
| 578 | - display: flex; | |
| 579 | -} | |
| 580 | - | |
| 581 | -.bbp-topic-reply-link { | |
| 582 | - padding: 6px 20px; | |
| 583 | - font-weight: 400; | |
| 584 | - border-radius: 2px; | |
| 585 | - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.18s ease-in-out; | |
| 586 | - background: #fff; | |
| 587 | - border: 1px solid #d0d8dc; | |
| 588 | - color: var(--black_800); | |
| 589 | - height: 26px; | |
| 590 | - font-size: 12px; | |
| 591 | - line-height: 26px; | |
| 592 | -} | |
| 593 | - | |
| 594 | -.comment-content .bbp-topic-reply-link:hover { | |
| 595 | - background: #fff; | |
| 596 | - border: 1px solid var(--black_800); | |
| 597 | - color: var(--black_800); | |
| 598 | -} | |
| 599 | - | |
| 600 | -.page-numbers { | |
| 601 | - cursor: pointer !important; | |
| 602 | -} | |
| 603 | - | |
| 604 | -.pagination-wrapper .page-numbers.next { | |
| 605 | - display: flex; | |
| 606 | - align-items: center; | |
| 607 | - justify-content: center; | |
| 608 | - padding-bottom: 2px; | |
| 609 | -} | |
| 610 | - | |
| 611 | -.post-header .support-total-info li a { | |
| 612 | - font-weight: 400; | |
| 613 | -} | |
| 614 | - | |
| 615 | -.post-header .support-total-info li a { | |
| 616 | - color: #6b707f; | |
| 617 | -} | |
| 618 | - | |
| 619 | -.post-header .support-total-info li a.open-data.loading { | |
| 620 | - color: var(--black_800); | |
| 621 | - font-weight: 500; | |
| 622 | -} | |
| 623 | - | |
| 624 | -#tagList { | |
| 625 | - padding-left: 40px; | |
| 626 | -} | |
| 627 | - | |
| 628 | -.userlist { | |
| 629 | - padding-left: 15px; | |
| 630 | -} | |
| 631 | - | |
| 632 | -.post-header .category-menu .all-users a { | |
| 633 | - position: relative; | |
| 634 | -} | |
| 635 | - | |
| 636 | -.post-header .category-menu .all-users a .count { | |
| 637 | - background: #ebedf0; | |
| 638 | - border-radius: 10px; | |
| 639 | - color: #838793; | |
| 640 | - font-size: 12px; | |
| 641 | - position: absolute; | |
| 642 | - margin-left: 5px; | |
| 643 | - padding: 1px 5px 0; | |
| 644 | - top: 8px; | |
| 645 | - width: auto; | |
| 646 | - height: auto; | |
| 647 | -} | |
| 648 | - | |
| 649 | -/*=========== Forum Post Widget css ==========*/ | |
| 650 | -.forum-post-widget .widget-header h2 { | |
| 651 | - font-size: 40px; | |
| 652 | - font-weight: 700; | |
| 653 | - line-height: 50px; | |
| 654 | - color: #000; | |
| 655 | -} | |
| 656 | -.forum-post-widget .widget-header .action_btn { | |
| 657 | - padding-bottom: 8px; | |
| 658 | - padding-top: 8px; | |
| 659 | - box-shadow: none; | |
| 660 | -} | |
| 661 | -.forum-post-widget .widget-header .action_btn:hover { | |
| 662 | - box-shadow: 0 20px 30px 0 rgba(17, 166, 131, 0.24); | |
| 663 | -} | |
| 664 | -.forum-post-widget .post-filter-widget { | |
| 665 | - box-shadow: 0 1.6px 3.5px 0 rgba(51, 77, 114, 0.1490196078), 0 0.5px 1px 0 rgba(51, 77, 114, 0.1019607843); | |
| 666 | - border-radius: 10px; | |
| 667 | - background-color: #fff; | |
| 668 | - padding: 16.5px 30px; | |
| 669 | - display: flex; | |
| 670 | - flex-wrap: wrap; | |
| 671 | - margin-bottom: 20px; | |
| 672 | -} | |
| 673 | -.forum-post-widget .post-filter-widget .single-filter-item { | |
| 674 | - margin-right: 30px; | |
| 675 | - display: flex; | |
| 676 | - align-items: center; | |
| 677 | -} | |
| 678 | -.forum-post-widget .post-filter-widget .single-filter-item a.data-active { | |
| 679 | - color: var(--bbpc_brand_color); | |
| 680 | -} | |
| 681 | -.forum-post-widget .post-filter-widget .single-filter-item i { | |
| 682 | - margin-right: 5px; | |
| 683 | - font-size: 12px; | |
| 684 | -} | |
| 685 | -@media (max-width: 1200px) and (min-width: 992px) { | |
| 686 | - .forum-post-widget .post-filter-widget .single-filter-item { | |
| 687 | - margin-right: 20px; | |
| 688 | - } | |
| 689 | -} | |
| 690 | -.forum-post-widget .post-filter-widget .single-filter-item:last-child { | |
| 691 | - margin-right: 0; | |
| 692 | -} | |
| 693 | -.forum-post-widget .post-filter-widget .single-filter-item input[type=radio] { | |
| 694 | - display: none; | |
| 695 | -} | |
| 696 | -.forum-post-widget .post-filter-widget .single-filter-item input[type=radio]:checked { | |
| 697 | - display: none; | |
| 698 | -} | |
| 699 | -.forum-post-widget .post-filter-widget .single-filter-item input[type=radio]:checked ~ label { | |
| 700 | - color: var(--bbpc_brand_color); | |
| 701 | -} | |
| 702 | -.forum-post-widget .post-filter-widget .single-filter-item input[type=radio]:checked ~ label .main-img { | |
| 703 | - display: none; | |
| 704 | -} | |
| 705 | -.forum-post-widget .post-filter-widget .single-filter-item input[type=radio]:checked ~ label .hover-img { | |
| 706 | - display: block; | |
| 707 | -} | |
| 708 | -.forum-post-widget .post-filter-widget .single-filter-item label { | |
| 709 | - display: flex; | |
| 710 | - align-items: center; | |
| 711 | - cursor: pointer; | |
| 712 | - font-size: 14px; | |
| 713 | - font-weight: 400; | |
| 714 | - line-height: 16px; | |
| 715 | - color: #6a737c; | |
| 716 | -} | |
| 717 | -.forum-post-widget .post-filter-widget .single-filter-item label img { | |
| 718 | - margin-right: 8.5px; | |
| 719 | - margin-bottom: 1px; | |
| 720 | -} | |
| 721 | -.forum-post-widget .post-filter-widget .single-filter-item label .main-img { | |
| 722 | - display: block; | |
| 723 | -} | |
| 724 | -.forum-post-widget .post-filter-widget .single-filter-item label .hover-img { | |
| 725 | - display: none; | |
| 726 | -} | |
| 727 | - | |
| 728 | -.single-forum-post-widget { | |
| 729 | - box-shadow: 0 1.6px 3.5px 0 rgba(51, 77, 114, 0.1490196078), 0 0.5px 1px 0 rgba(51, 77, 114, 0.1019607843); | |
| 730 | - border-radius: 10px; | |
| 731 | - background-color: #fff; | |
| 732 | - transition: all 0.3s ease-out; | |
| 733 | - padding: 22px 35px 18px 30px; | |
| 734 | - display: flex; | |
| 735 | - align-items: center; | |
| 736 | - justify-content: space-between; | |
| 737 | - margin-top: 10px; | |
| 738 | -} | |
| 739 | -.single-forum-post-widget:first-child { | |
| 740 | - margin-top: 0; | |
| 741 | -} | |
| 742 | -.single-forum-post-widget:hover { | |
| 743 | - box-shadow: 0 20px 45px 0 rgba(51, 77, 114, 0.1490196078); | |
| 744 | - transform: translateX(2px); | |
| 745 | -} | |
| 746 | -.single-forum-post-widget:hover .post-title h6 a { | |
| 747 | - color: var(--bbpc_brand_color); | |
| 748 | -} | |
| 749 | -.single-forum-post-widget .post-title { | |
| 750 | - margin-bottom: 10px; | |
| 751 | -} | |
| 752 | -.single-forum-post-widget .post-title h6 { | |
| 753 | - margin-top: 0; | |
| 754 | - margin-bottom: 0; | |
| 755 | - line-height: 22px; | |
| 756 | - font-size: 16px; | |
| 757 | - font-weight: 500; | |
| 758 | -} | |
| 759 | -.single-forum-post-widget .post-title h6 a { | |
| 760 | - color: #171d24; | |
| 761 | - font-size: 18px; | |
| 762 | -} | |
| 763 | -.single-forum-post-widget .post-title i { | |
| 764 | - font-size: 15px; | |
| 765 | - color: #2ed83f; | |
| 766 | - vertical-align: middle; | |
| 767 | - margin-left: 6px; | |
| 768 | -} | |
| 769 | -.single-forum-post-widget .post-info { | |
| 770 | - display: flex; | |
| 771 | - flex-wrap: wrap; | |
| 772 | -} | |
| 773 | -.single-forum-post-widget .post-info > div { | |
| 774 | - margin-right: 15px; | |
| 775 | - color: var(--black_600); | |
| 776 | - font-size: 14px; | |
| 777 | - font-weight: 400; | |
| 778 | - line-height: 16px; | |
| 779 | -} | |
| 780 | -.single-forum-post-widget .post-info > div img { | |
| 781 | - margin-right: 5px; | |
| 782 | - height: 15px; | |
| 783 | - width: 15px; | |
| 784 | - margin-top: 0px; | |
| 785 | -} | |
| 786 | -.single-forum-post-widget .post-info .post-category a { | |
| 787 | - color: #4a6ee0; | |
| 788 | -} | |
| 789 | -.single-forum-post-widget .post-tags { | |
| 790 | - display: flex; | |
| 791 | -} | |
| 792 | -.single-forum-post-widget .post-tags .single-tag { | |
| 793 | - padding: 3px 9.5px; | |
| 794 | - border-radius: 3px; | |
| 795 | - font-size: 12px; | |
| 796 | - font-weight: 400; | |
| 797 | - line-height: 14px; | |
| 798 | - color: #fff; | |
| 799 | - margin: 12px 10px 0 0; | |
| 800 | -} | |
| 801 | -.single-forum-post-widget .post-tags .single-tag:last-child { | |
| 802 | - margin-right: 0; | |
| 803 | -} | |
| 804 | -.single-forum-post-widget .post-tags .single-tag.tag-jq { | |
| 805 | - background-color: #f7ab40; | |
| 806 | -} | |
| 807 | -.single-forum-post-widget .post-tags .single-tag.tag-php { | |
| 808 | - background-color: #7543e0; | |
| 809 | -} | |
| 810 | -.single-forum-post-widget .post-tags .single-tag.tag-wp { | |
| 811 | - background-color: #6078ce; | |
| 812 | -} | |
| 813 | -.single-forum-post-widget .post-tags .single-tag.tag-js { | |
| 814 | - background-color: #ff7245; | |
| 815 | -} | |
| 816 | -.single-forum-post-widget .post-tags .single-tag.tag-dvlp { | |
| 817 | - background-color: #48a6ea; | |
| 818 | -} | |
| 819 | -.single-forum-post-widget .post-tags .single-tag.tag-ecmrc { | |
| 820 | - background-color: #333333; | |
| 821 | -} | |
| 822 | -.single-forum-post-widget .post-tags .single-tag.tag-foram { | |
| 823 | - background-color: var(--bbpc_brand_color); | |
| 824 | -} | |
| 825 | -.single-forum-post-widget .post-tags .single-tag.tag-hlp { | |
| 826 | - background-color: #2c53df; | |
| 827 | -} | |
| 828 | -.single-forum-post-widget .post-tags .single-tag.tag-sprt { | |
| 829 | - background-color: #0cc72a; | |
| 830 | -} | |
| 831 | -.single-forum-post-widget .post-reach { | |
| 832 | - border-left: 1px solid #e6e6e6; | |
| 833 | - padding-left: 10px; | |
| 834 | -} | |
| 835 | -.single-forum-post-widget .post-reach > div { | |
| 836 | - font-size: 12px; | |
| 837 | - font-weight: 400; | |
| 838 | - line-height: 14px; | |
| 839 | - color: #848d95; | |
| 840 | - margin-top: 10px; | |
| 841 | - display: flex; | |
| 842 | - align-items: center; | |
| 843 | -} | |
| 844 | -.single-forum-post-widget .post-reach > div:first-child { | |
| 845 | - margin-top: 0; | |
| 846 | -} | |
| 847 | -.single-forum-post-widget .post-reach > div img { | |
| 848 | - margin-right: 5px; | |
| 849 | -} | |
| 850 | - | |
| 851 | -.single-forum-post-widget .post-category img { | |
| 852 | - width: 20px; | |
| 853 | - height: auto; | |
| 854 | - border-radius: 50%; | |
| 855 | -} | |
| 856 | - | |
| 857 | -.single-filter-item a { | |
| 858 | - color: var(--black_600); | |
| 859 | -} | |
| 860 | -.single-filter-item a:hover { | |
| 861 | - text-decoration: none; | |
| 862 | -} | |
| 863 | - | |
| 864 | -.single-forum-post-widget .post-content .post-category a { | |
| 865 | - font-size: 14px; | |
| 866 | - color: var(--black_600); | |
| 867 | - gap: 5px; | |
| 868 | -} | |
| 869 | -.single-forum-post-widget .post-content .post-category a:hover { | |
| 870 | - color: var(--bbpc_brand_color); | |
| 871 | - text-decoration: none; | |
| 872 | -} | |
| 873 | - | |
| 874 | -body.body_dark .forum-post-widget .post-filter-widget .single-filter-item svg, body.body_dark .forum-post-widget .post-filter-widget .single-filter-item path { | |
| 875 | - fill: darkgrey; | |
| 876 | -} | |
| 877 | - | |
| 878 | -#aj-post-filter-widget svg circle.bbpc-preloader { | |
| 879 | - stroke: var(--bbpc_brand_color) !important; | |
| 880 | -} | |
| 881 | - | |
| 882 | -.ama-search-widget { | |
| 883 | - position: relative; | |
| 884 | - margin-left: auto; | |
| 885 | - margin-right: auto; | |
| 886 | -} | |
| 887 | -.ama-search-widget .header_search_keyword { | |
| 888 | - text-align: left; | |
| 889 | - display: flex; | |
| 890 | - flex-wrap: wrap; | |
| 891 | - align-items: center; | |
| 892 | - font-weight: 500; | |
| 893 | - justify-content: center; | |
| 894 | - margin-top: 10px; | |
| 895 | -} | |
| 896 | -.ama-search-widget .header_search_keyword span { | |
| 897 | - font-size: 14px; | |
| 898 | - margin-right: 10px; | |
| 899 | -} | |
| 900 | -.ama-search-widget .header_search_keyword ul { | |
| 901 | - margin: 0; | |
| 902 | -} | |
| 903 | -.ama-search-widget .header_search_keyword ul li { | |
| 904 | - display: inline-block; | |
| 905 | - margin: 0 3px 0; | |
| 906 | -} | |
| 907 | -.ama-search-widget .header_search_keyword ul li a { | |
| 908 | - display: block; | |
| 909 | - font-size: 13px; | |
| 910 | - padding: 0 19px; | |
| 911 | - border-radius: 45px; | |
| 912 | - background: var(--bbpc_color); | |
| 913 | - color: #fff; | |
| 914 | - font-weight: normal; | |
| 915 | -} | |
| 916 | -.ama-search-widget .header_search_keyword ul li a.header-search-form__keywords-label { | |
| 917 | - color: var(--black_800); | |
| 918 | -} | |
| 919 | -.ama-search-widget .search-box { | |
| 920 | - z-index: 99; | |
| 921 | - position: relative; | |
| 922 | -} | |
| 923 | -.ama-search-widget .search-box svg { | |
| 924 | - position: absolute; | |
| 925 | - right: 8px; | |
| 926 | - top: 49.59999%; | |
| 927 | - transform: translateY(-50%); | |
| 928 | - line-height: 22px; | |
| 929 | - padding: 10px; | |
| 930 | - border-radius: 4px; | |
| 931 | - border-left-color: transparent; | |
| 932 | - box-sizing: border-box; | |
| 933 | - color: var(--bbpc_brand_color); | |
| 934 | -} | |
| 935 | -.ama-search-widget .search-box input#searchInput { | |
| 936 | - border: 0 solid transparent; | |
| 937 | - box-shadow: none; | |
| 938 | -} | |
| 939 | -.ama-search-widget .search-box input { | |
| 940 | - width: 100%; | |
| 941 | - border-radius: 4px; | |
| 942 | - line-height: 35px; | |
| 943 | - text-indent: 15px; | |
| 944 | - padding-right: 43px; | |
| 945 | -} | |
| 946 | -.ama-search-widget .search-box #searchInput + .spinner { | |
| 947 | - position: absolute; | |
| 948 | - right: 45px; | |
| 949 | - top: 50% !important; | |
| 950 | - transform: translateY(-55%); | |
| 951 | - display: none; | |
| 952 | - background: #fff; | |
| 953 | - z-index: 999; | |
| 954 | -} | |
| 955 | -.ama-search-widget .search-box #searchInput + .spinner img { | |
| 956 | - width: 22px; | |
| 957 | -} | |
| 958 | -.ama-search-widget .elementor img { | |
| 959 | - height: auto; | |
| 960 | - max-width: 100%; | |
| 961 | - border: none; | |
| 962 | - border-radius: 0; | |
| 963 | - -webkit-box-shadow: none; | |
| 964 | - box-shadow: none; | |
| 965 | -} | |
| 966 | - | |
| 967 | -ul.list-unstyled { | |
| 968 | - padding-left: 0; | |
| 969 | -} | |
| 970 | - | |
| 971 | -.ama-search-keyword-wrapper .header_search_keyword ul li a { | |
| 972 | - color: var(--black_600); | |
| 973 | - background: var(--black_50); | |
| 974 | - font-weight: normal; | |
| 975 | -} | |
| 976 | - | |
| 977 | -/* ------- Forum & Search -------- */ | |
| 978 | -.single-forum-post-widget .post-category img { | |
| 979 | - width: 15px; | |
| 980 | - height: auto; | |
| 981 | -} | |
| 982 | - | |
| 983 | -.single-filter-item a { | |
| 984 | - color: var(--black_600); | |
| 985 | -} | |
| 986 | - | |
| 987 | -/** === Doc search form result === **/ | |
| 988 | -#bbpc-search-result { | |
| 989 | - position: absolute; | |
| 990 | - width: 100%; | |
| 991 | - background: var(--bs-white); | |
| 992 | - font-size: 14px; | |
| 993 | - font-weight: 400; | |
| 994 | - display: none; | |
| 995 | - transition: all 0.4s; | |
| 996 | - margin-top: 2px; | |
| 997 | - border: 1px solid var(--black_50); | |
| 998 | - border-radius: 4px; | |
| 999 | - box-shadow: 0 3px 4px 0 rgba(4, 73, 89, 0.06); | |
| 1000 | - padding: 20px 25px; | |
| 1001 | - top: 45px; | |
| 1002 | -} | |
| 1003 | -#bbpc-search-result::before { | |
| 1004 | - content: ""; | |
| 1005 | - width: 12px; | |
| 1006 | - height: 12px; | |
| 1007 | - background: var(--bs-white); | |
| 1008 | - position: absolute; | |
| 1009 | - top: -6px; | |
| 1010 | - transform: rotate(45deg); | |
| 1011 | - left: 40px; | |
| 1012 | - border-left: 1px solid var(--black_50); | |
| 1013 | - border-top: 1px solid var(--black_50); | |
| 1014 | -} | |
| 1015 | -#bbpc-search-result .searchbar-tabs { | |
| 1016 | - padding: 0 10px 15px 0; | |
| 1017 | -} | |
| 1018 | -#bbpc-search-result a { | |
| 1019 | - text-decoration: none; | |
| 1020 | -} | |
| 1021 | -#bbpc-search-result.ajax-search { | |
| 1022 | - display: block; | |
| 1023 | -} | |
| 1024 | -#bbpc-search-result .not-found-text, | |
| 1025 | -#bbpc-search-result .bbpc-not-found-text { | |
| 1026 | - display: none; | |
| 1027 | - font-weight: 700; | |
| 1028 | - font-size: 20px; | |
| 1029 | - margin: 12px 0 5px; | |
| 1030 | - letter-spacing: 0.1px; | |
| 1031 | -} | |
| 1032 | - | |
| 1033 | -.search-results-tab .bbpc-search-title { | |
| 1034 | - font-size: 16px; | |
| 1035 | - color: var(--h_title); | |
| 1036 | - display: block; | |
| 1037 | - border-bottom: 1px solid var(--black_50); | |
| 1038 | - font-weight: 500; | |
| 1039 | - text-align: left; | |
| 1040 | - padding-left: 8px; | |
| 1041 | - margin: 12px 0 0; | |
| 1042 | - padding-bottom: 8px; | |
| 1043 | - text-transform: capitalize; | |
| 1044 | -} | |
| 1045 | - | |
| 1046 | -/* | |
| 1047 | - keywords | |
| 1048 | - */ | |
| 1049 | -.bbpc-search-keyword { | |
| 1050 | - display: block; | |
| 1051 | - text-align: center; | |
| 1052 | - margin: 15px 0 5px; | |
| 1053 | -} | |
| 1054 | -.bbpc-search-keyword.left { | |
| 1055 | - text-align: left; | |
| 1056 | -} | |
| 1057 | -.bbpc-search-keyword.right { | |
| 1058 | - text-align: right; | |
| 1059 | -} | |
| 1060 | -.bbpc-search-keyword ul { | |
| 1061 | - list-style: none; | |
| 1062 | - margin: 0 2px; | |
| 1063 | - padding: 0; | |
| 1064 | - display: inline-block; | |
| 1065 | -} | |
| 1066 | -.bbpc-search-keyword ul li { | |
| 1067 | - list-style: none; | |
| 1068 | - margin: 0 2px; | |
| 1069 | - padding: 0; | |
| 1070 | - display: inline-block; | |
| 1071 | -} | |
| 1072 | -.bbpc-search-keyword ul li a { | |
| 1073 | - color: #fff; | |
| 1074 | - background: rgba(2, 1, 1, 0.2117647059); | |
| 1075 | - font-size: 14px; | |
| 1076 | - text-transform: capitalize; | |
| 1077 | - padding: 4px 12px; | |
| 1078 | - border-radius: 15px; | |
| 1079 | - font-weight: 400; | |
| 1080 | - text-decoration: none !important; | |
| 1081 | -} | |
| 1082 | - | |
| 1083 | -.bbpc_search_form_wrapper { | |
| 1084 | - position: relative; | |
| 1085 | -} | |
| 1086 | -.bbpc_search_form_wrapper .input-wrapper { | |
| 1087 | - position: relative; | |
| 1088 | -} | |
| 1089 | -.bbpc_search_form_wrapper .input-wrapper .spinner { | |
| 1090 | - position: absolute; | |
| 1091 | - right: 30px; | |
| 1092 | - top: 50%; | |
| 1093 | - transform: translateY(-55%); | |
| 1094 | - display: none; | |
| 1095 | - background: #fff; | |
| 1096 | - z-index: 999; | |
| 1097 | - border-radius: 50%; | |
| 1098 | - height: 21px; | |
| 1099 | - width: 21px; | |
| 1100 | - line-height: 0; | |
| 1101 | -} | |
| 1102 | -.bbpc_search_form_wrapper .input-wrapper .spinner img { | |
| 1103 | - width: 22px; | |
| 1104 | -} | |
| 1105 | -.bbpc_search_form_wrapper .input-wrapper input { | |
| 1106 | - width: 100%; | |
| 1107 | - padding: 0.75em; | |
| 1108 | -} | |
| 1109 | -.bbpc_search_form_wrapper .input-wrapper input::-webkit-search-cancel-button { | |
| 1110 | - -webkit-appearance: auto; | |
| 1111 | - position: absolute; | |
| 1112 | - right: 30px; | |
| 1113 | -} | |
| 1114 | -.bbpc_search_form_wrapper .input-wrapper .submit-btn-left { | |
| 1115 | - position: absolute; | |
| 1116 | - right: 0; | |
| 1117 | - top: 0; | |
| 1118 | - bottom: 0; | |
| 1119 | - display: flex; | |
| 1120 | - margin: auto; | |
| 1121 | - align-items: center; | |
| 1122 | -} | |
| 1123 | -.bbpc_search_form_wrapper .input-wrapper .submit-btn-right { | |
| 1124 | - position: absolute; | |
| 1125 | - left: 0; | |
| 1126 | - top: 2px; | |
| 1127 | - bottom: 2px; | |
| 1128 | - margin: auto; | |
| 1129 | - display: flex; | |
| 1130 | - height: fit-content; | |
| 1131 | -} | |
| 1132 | -.bbpc_search_form_wrapper .input-wrapper button { | |
| 1133 | - background: transparent; | |
| 1134 | - border: none; | |
| 1135 | - outline: none; | |
| 1136 | - cursor: pointer; | |
| 1137 | - padding: 0; | |
| 1138 | - margin: 0; | |
| 1139 | - color: black; | |
| 1140 | -} | |
| 1141 | -.bbpc_search_form_wrapper .input-wrapper button svg { | |
| 1142 | - width: auto; | |
| 1143 | - max-width: 100%; | |
| 1144 | - height: auto; | |
| 1145 | - max-height: 80%; | |
| 1146 | -} | |
| 1147 | -.bbpc_search_form_wrapper .search-result-item { | |
| 1148 | - padding: 10px 15px; | |
| 1149 | - display: flex; | |
| 1150 | - align-items: center; | |
| 1151 | - width: 100%; | |
| 1152 | - flex: 100%; | |
| 1153 | - transition: all 0.3s; | |
| 1154 | -} | |
| 1155 | -.bbpc_search_form_wrapper .search-result-item a { | |
| 1156 | - color: var(--p_color); | |
| 1157 | -} | |
| 1158 | -.bbpc_search_form_wrapper .search-result-item:hover { | |
| 1159 | - background: rgba(143, 187, 237, 0.1); | |
| 1160 | -} | |
| 1161 | - | |
| 1162 | -.searchbar-tabs .tab-item { | |
| 1163 | - font-size: 14px; | |
| 1164 | - font-weight: 500; | |
| 1165 | - padding: 11px 8px; | |
| 1166 | - margin-right: 20px; | |
| 1167 | - border: none; | |
| 1168 | - background: 0 0; | |
| 1169 | - color: var(--black_400); | |
| 1170 | - text-transform: capitalize; | |
| 1171 | - cursor: pointer; | |
| 1172 | -} | |
| 1173 | -.searchbar-tabs .tab-item.active { | |
| 1174 | - color: var(--bbpc_brand_color); | |
| 1175 | - border-bottom: 3px solid var(--bbpc_brand_color); | |
| 1176 | -} | |
| 1177 | -.searchbar-tabs .tab-item:hover { | |
| 1178 | - text-decoration: none; | |
| 1179 | - outline: none; | |
| 1180 | -} | |
| 1181 | -.searchbar-tabs .tab-item:focus { | |
| 1182 | - text-decoration: none; | |
| 1183 | - outline: none; | |
| 1184 | -} | |
| 1185 | - | |
| 1186 | -.forum-card .forum-card-thumbnail-area { | |
| 1187 | - padding: 0 !important; | |
| 1188 | -} | |
| 1189 | - | |
| 1190 | -body.body_dark input#searchInput.input_focused { | |
| 1191 | - background: #fff; | |
| 1192 | -} | |
| 1193 | -body.body_dark .not-found-text, body.body_dark .bbpc-not-found-text { | |
| 1194 | - color: black; | |
| 1195 | -} | |
| 1196 | - | |
| 1197 | -/** === Focus Search Form === **/ | |
| 1198 | -body.bbpc-search-overlay { | |
| 1199 | - opacity: 1; | |
| 1200 | - visibility: visible; | |
| 1201 | -} | |
| 1202 | - | |
| 1203 | -body:not(.bbpc-search-overlay) #bbpc-search-result.ajax-search { | |
| 1204 | - display: none; | |
| 1205 | -} | |
| 1206 | - | |
| 1207 | -.bbpc-search-overlay.active { | |
| 1208 | - display: none; | |
| 1209 | - position: fixed; | |
| 1210 | - top: 0; | |
| 1211 | - left: 0; | |
| 1212 | - width: 100%; | |
| 1213 | - height: 100%; | |
| 1214 | - background: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */ | |
| 1215 | - justify-content: center; | |
| 1216 | - align-items: center; | |
| 1217 | - z-index: 99; | |
| 1218 | - transition: 0.3s all; | |
| 1219 | -} | |
| 1220 | - | |
| 1221 | -.forum-with-topics { | |
| 1222 | - border-radius: 30px; | |
| 1223 | -} | |
| 1224 | -.forum-with-topics .thumb-area .forum-thumbnail { | |
| 1225 | - border-radius: 8px 8px 0 0; | |
| 1226 | - width: 100%; | |
| 1227 | -} | |
| 1228 | -.forum-with-topics .thumb-area .forum-thumbnail img { | |
| 1229 | - width: 100%; | |
| 1230 | - z-index: -1; | |
| 1231 | -} | |
| 1232 | -.forum-with-topics .topic-table .topic-heading { | |
| 1233 | - display: flex; | |
| 1234 | - flex-wrap: wrap; | |
| 1235 | - background: var(--bs-white); | |
| 1236 | - box-shadow: 0 20px 60px -5px rgba(51, 77, 114, 0.12); | |
| 1237 | - padding: 16px 30px; | |
| 1238 | - border-radius: 0 0 8px 8px; | |
| 1239 | - border: 1px solid var(--black_50); | |
| 1240 | -} | |
| 1241 | -.forum-with-topics .topic-table .topic-heading .icon-text { | |
| 1242 | - color: var(--black_600); | |
| 1243 | - font-size: 14px; | |
| 1244 | - font-weight: 400; | |
| 1245 | - display: flex; | |
| 1246 | - align-items: center; | |
| 1247 | -} | |
| 1248 | -.forum-with-topics .topic-table .topic-heading .icon-text svg { | |
| 1249 | - margin-right: 5px; | |
| 1250 | -} | |
| 1251 | -.forum-with-topics .topic-table .topic-heading .topic { | |
| 1252 | - width: 54%; | |
| 1253 | -} | |
| 1254 | -.forum-with-topics .topic-table .topic-heading .voice { | |
| 1255 | - width: 13%; | |
| 1256 | -} | |
| 1257 | -.forum-with-topics .topic-table .topic-heading .replies { | |
| 1258 | - width: 8%; | |
| 1259 | -} | |
| 1260 | -.forum-with-topics .topic-table .topic-heading .freshness { | |
| 1261 | - width: 20%; | |
| 1262 | -} | |
| 1263 | -.forum-with-topics .topic-table .topic-contents { | |
| 1264 | - display: flex; | |
| 1265 | - background: var(--bs-white); | |
| 1266 | - box-shadow: 0 1.6px 3.5px 0 rgba(51, 77, 114, 0.1490196078), 0 0.5px 1px 0 rgba(51, 77, 114, 0.1019607843); | |
| 1267 | - margin: 10px 0; | |
| 1268 | - border-radius: 8px; | |
| 1269 | - padding: 16px 30px; | |
| 1270 | - border: 1px solid var(--black_50); | |
| 1271 | - align-items: center; | |
| 1272 | -} | |
| 1273 | -.forum-with-topics .topic-table .topic-contents .title { | |
| 1274 | - width: 50%; | |
| 1275 | -} | |
| 1276 | -.forum-with-topics .topic-table .topic-contents .title:hover a { | |
| 1277 | - text-decoration: none; | |
| 1278 | -} | |
| 1279 | -.forum-with-topics .topic-table .topic-contents .title p { | |
| 1280 | - margin-top: 0; | |
| 1281 | - margin-bottom: 0; | |
| 1282 | - font-size: 15px; | |
| 1283 | -} | |
| 1284 | -.forum-with-topics .topic-table .topic-contents .title h3 { | |
| 1285 | - font-size: 16px; | |
| 1286 | - margin-bottom: 5px; | |
| 1287 | - margin-top: 0; | |
| 1288 | - line-height: 20px; | |
| 1289 | -} | |
| 1290 | -.forum-with-topics .topic-table .topic-contents .title h3:hover { | |
| 1291 | - color: var(--bbpc_brand_color); | |
| 1292 | -} | |
| 1293 | -.forum-with-topics .topic-table .topic-contents .voice { | |
| 1294 | - width: 12%; | |
| 1295 | -} | |
| 1296 | -.forum-with-topics .topic-table .topic-contents .topics { | |
| 1297 | - width: 14%; | |
| 1298 | -} | |
| 1299 | -.forum-with-topics .topic-table .topic-contents .voice, | |
| 1300 | -.forum-with-topics .topic-table .topic-contents .topics { | |
| 1301 | - text-align: center; | |
| 1302 | -} | |
| 1303 | -.forum-with-topics .topic-table .topic-contents .user { | |
| 1304 | - width: 25%; | |
| 1305 | - margin-top: 2px; | |
| 1306 | -} | |
| 1307 | -.forum-with-topics .topic-table .topic-contents .user .user-data { | |
| 1308 | - display: flex; | |
| 1309 | -} | |
| 1310 | -.forum-with-topics .topic-table .topic-contents .user .user-img { | |
| 1311 | - margin-right: 10px; | |
| 1312 | -} | |
| 1313 | -.forum-with-topics .topic-table .topic-contents .user .user-img img { | |
| 1314 | - border-radius: 50%; | |
| 1315 | -} | |
| 1316 | -.forum-with-topics .topic-table .topic-contents .user .user-info span.bbp-author-name { | |
| 1317 | - font-size: 14px; | |
| 1318 | - font-weight: 400; | |
| 1319 | - color: var(--black_800); | |
| 1320 | - letter-spacing: normal; | |
| 1321 | - margin-bottom: 8px; | |
| 1322 | - display: inline-block; | |
| 1323 | -} | |
| 1324 | -.forum-with-topics .topic-table .topic-contents .user .user-info .date { | |
| 1325 | - font-size: 13px; | |
| 1326 | - margin: 0; | |
| 1327 | - line-height: 1.5; | |
| 1328 | -} | |
| 1329 | -.forum-with-topics .topic-table .topic-contents .user .user-info .date a { | |
| 1330 | - color: var(--black_400); | |
| 1331 | -} | |
| 1332 | -.forum-with-topics .topic-table .topic-contents .user .user-info .date a:hover { | |
| 1333 | - color: var(--bbpc_brand_color); | |
| 1334 | - text-decoration: none; | |
| 1335 | -} | |
| 1336 | -.forum-with-topics .topic-table .topic-contents .user .user-info h3 { | |
| 1337 | - line-height: 0.5; | |
| 1338 | - margin: 0; | |
| 1339 | -} | |
| 1340 | -.forum-with-topics .topic-table .topic-contents h3 a { | |
| 1341 | - color: #171D24 !important; | |
| 1342 | - font-size: 16px; | |
| 1343 | -} | |
| 1344 | -.forum-with-topics .topic-table .topic-contents h3 a:hover { | |
| 1345 | - text-decoration: none; | |
| 1346 | - color: var(--bbpc_brand_color) !important; | |
| 1347 | -} | |
| 1348 | -.forum-with-topics .topic-table .topic-contents h3 a:hover span { | |
| 1349 | - color: var(--bbpc_brand_color) !important; | |
| 1350 | -} | |
| 1351 | - | |
| 1352 | -.forum-info { | |
| 1353 | - padding: 50px 30px; | |
| 1354 | -} | |
| 1355 | -.forum-info .title-area { | |
| 1356 | - align-items: center; | |
| 1357 | -} | |
| 1358 | -@media all and (max-width: 560px) { | |
| 1359 | - .forum-info .title-area { | |
| 1360 | - margin-top: 10px; | |
| 1361 | - } | |
| 1362 | -} | |
| 1363 | -.forum-info .title-area .title, | |
| 1364 | -.forum-info .title-area .subtitle { | |
| 1365 | - color: #fff; | |
| 1366 | -} | |
| 1367 | -.forum-info .title-area .title { | |
| 1368 | - font-size: 28px; | |
| 1369 | - text-transform: capitalize; | |
| 1370 | - margin: 0; | |
| 1371 | - letter-spacing: normal; | |
| 1372 | -} | |
| 1373 | -@media all and (max-width: 560px) { | |
| 1374 | - .forum-info .title-area .title { | |
| 1375 | - margin-bottom: 4px; | |
| 1376 | - } | |
| 1377 | -} | |
| 1378 | -.forum-info .title-area .subtitle { | |
| 1379 | - font-style: italic; | |
| 1380 | -} | |
| 1381 | - | |
| 1382 | -.forum-meta { | |
| 1383 | - display: flex; | |
| 1384 | - position: absolute; | |
| 1385 | - list-style-type: none; | |
| 1386 | - top: 20px; | |
| 1387 | - right: 20px; | |
| 1388 | - margin: 0; | |
| 1389 | -} | |
| 1390 | -.forum-meta li { | |
| 1391 | - display: flex; | |
| 1392 | - margin-right: 10px; | |
| 1393 | - line-height: 1 !important; | |
| 1394 | - border-radius: 3px; | |
| 1395 | - margin-left: 0; | |
| 1396 | -} | |
| 1397 | -.forum-meta li.button { | |
| 1398 | - padding: 0; | |
| 1399 | -} | |
| 1400 | -.forum-meta li.button:hover { | |
| 1401 | - text-decoration: none; | |
| 1402 | -} | |
| 1403 | -.forum-meta li:hover a { | |
| 1404 | - text-decoration: none; | |
| 1405 | -} | |
| 1406 | -.forum-meta li:last-child { | |
| 1407 | - margin-right: 0; | |
| 1408 | -} | |
| 1409 | -.forum-meta .topics, | |
| 1410 | -.forum-meta .replies { | |
| 1411 | - color: #fff; | |
| 1412 | - display: inline-flex; | |
| 1413 | - align-items: center; | |
| 1414 | - background: rgba(255, 255, 255, 0.15); | |
| 1415 | - padding: 8px; | |
| 1416 | - font-size: 14px !important; | |
| 1417 | - margin-top: 0; | |
| 1418 | -} | |
| 1419 | -.forum-meta .topics:hover, | |
| 1420 | -.forum-meta .replies:hover { | |
| 1421 | - background: rgba(255, 255, 255, 0.3); | |
| 1422 | -} | |
| 1423 | -.forum-meta .topics svg, | |
| 1424 | -.forum-meta .replies svg { | |
| 1425 | - margin-right: 5px; | |
| 1426 | -} | |
| 1427 | -.forum-meta .button a { | |
| 1428 | - color: #ffffff; | |
| 1429 | - background: var(--bbpc_brand_color); | |
| 1430 | - padding: 8px 14px; | |
| 1431 | - font-size: 14px !important; | |
| 1432 | - border-radius: 3px; | |
| 1433 | -} | |
| 1434 | -.forum-meta .button a:hover { | |
| 1435 | - background: #085d4c; | |
| 1436 | -} | |
| 1437 | - | |
| 1438 | -.forum-card { | |
| 1439 | - background: var(--bs-white); | |
| 1440 | - border-radius: 8px 8px 8px 8px; | |
| 1441 | - border: 1px solid var(--black_50); | |
| 1442 | - overflow: hidden; | |
| 1443 | -} | |
| 1444 | -.forum-card .card-body { | |
| 1445 | - padding: 25px; | |
| 1446 | -} | |
| 1447 | -.forum-card .card-body p { | |
| 1448 | - margin-bottom: 0; | |
| 1449 | -} | |
| 1450 | -.forum-card .card-title h3 { | |
| 1451 | - font-size: 18px; | |
| 1452 | - margin-bottom: 5px; | |
| 1453 | - margin-top: unset; | |
| 1454 | -} | |
| 1455 | -.forum-card .card-title h3:hover a { | |
| 1456 | - color: #0b589d; | |
| 1457 | -} | |
| 1458 | -.forum-card .card-title a { | |
| 1459 | - text-decoration: none; | |
| 1460 | -} | |
| 1461 | -.forum-card .forum-card-thumbnail-area { | |
| 1462 | - position: relative; | |
| 1463 | - border-radius: 30px 30px 0 0; | |
| 1464 | - padding: 10px 25px; | |
| 1465 | -} | |
| 1466 | -.forum-card .forum-card-thumbnail-area img { | |
| 1467 | - width: auto; | |
| 1468 | -} | |
| 1469 | -.forum-card .forum-meta { | |
| 1470 | - display: flex; | |
| 1471 | - position: absolute; | |
| 1472 | - bottom: 0; | |
| 1473 | - right: 20px; | |
| 1474 | - top: auto; | |
| 1475 | - margin-bottom: 20px; | |
| 1476 | -} | |
| 1477 | -.forum-card .forum-meta .topics, .forum-card .forum-meta .replies { | |
| 1478 | - background: rgba(23, 29, 36, 0.7); | |
| 1479 | -} | |
| 1480 | -.forum-card .forum-meta .topics:hover, .forum-card .forum-meta .replies:hover { | |
| 1481 | - background: rgba(23, 29, 36, 0.8); | |
| 1482 | -} | |
| 1483 | - | |
| 1484 | -@media all and (max-width: 560px) { | |
| 1485 | - .topic-contents .voice, | |
| 1486 | - .topic-contents .topics, | |
| 1487 | - .topic-contents .user { | |
| 1488 | - display: none; | |
| 1489 | - } | |
| 1490 | - .topic-table .topic-heading .voice, | |
| 1491 | - .topic-table .topic-heading .replies, | |
| 1492 | - .topic-table .topic-heading .freshness { | |
| 1493 | - display: none !important; | |
| 1494 | - } | |
| 1495 | - .topic-table .topic-heading .topic, | |
| 1496 | - .topic-table .topic-contents .title { | |
| 1497 | - width: 100% !important; | |
| 1498 | - } | |
| 1499 | -} | |
| 1500 | -.home-forum-counter .elementor-element-populated { | |
| 1501 | - background-color: var(--bs-white); | |
| 1502 | -} | |
| 1503 | -.home-forum-counter .elementor-element-populated .elementor-counter-number { | |
| 1504 | - color: var(--black_900); | |
| 1505 | -} | |
| 1506 | - | |
| 1507 | -.home-forum-posts .elementor-post__card { | |
| 1508 | - background-color: var(--bs-white) !important; | |
| 1509 | -} | |
| 1510 | -.home-forum-posts .elementor-post__card .elementor-post__title a { | |
| 1511 | - color: var(--black_900); | |
| 1512 | -} | |
| 1513 | - | |
| 1514 | -.card { | |
| 1515 | - position: relative; | |
| 1516 | - display: flex; | |
| 1517 | - flex-direction: column; | |
| 1518 | -} | |
| 1519 | - | |
| 1520 | -body.body_dark .forum-with-topics .topic-table .topic-contents h3 a { | |
| 1521 | - color: #fff !important; | |
| 1522 | -} | |
| 1523 | -body.body_dark .forum-with-topics .topic-table .topic-contents h3 a:hover { | |
| 1524 | - color: var(--bbpc_brand_color) !important; | |
| 1525 | -} | |
| 1526 | -body.body_dark .forum-with-topics .topic-table .topic-contents .title p { | |
| 1527 | - color: var(--black_400); | |
| 1528 | -} | |
| 1529 | -body.body_dark .forum-with-topics .forum-card .card-body .card-title h3 a { | |
| 1530 | - color: #fff !important; | |
| 1531 | -} | |
| 1532 | -body.body_dark .forum-with-topics .forum-card .card-body .card-title h3 a:hover { | |
| 1533 | - color: var(--bbpc_brand_color) !important; | |
| 1534 | -} | |
| 1535 | -body.body_dark .forum-with-topics .forum-card .card-body:not(.card-title) { | |
| 1536 | - color: var(--black_400); | |
| 1537 | -} | |
| 1538 | - | |
| 1539 | -.single-forum-post-widget { | |
| 1540 | - box-shadow: 0 1.6px 3.5px 0 rgba(51, 77, 114, 0.1490196078), 0 0.5px 1px 0 rgba(51, 77, 114, 0.1019607843); | |
| 1541 | - border-radius: 10px; | |
| 1542 | - background-color: #fff; | |
| 1543 | - transition: all 0.3s ease-out; | |
| 1544 | - padding: 22px 35px 18px 30px; | |
| 1545 | - display: flex; | |
| 1546 | - align-items: center; | |
| 1547 | - justify-content: space-between; | |
| 1548 | - margin-top: 10px; | |
| 1549 | -} | |
| 1550 | -.single-forum-post-widget:first-child { | |
| 1551 | - margin-top: 0; | |
| 1552 | -} | |
| 1553 | -.single-forum-post-widget:hover { | |
| 1554 | - box-shadow: 0 20px 45px 0 rgba(51, 77, 114, 0.1490196078); | |
| 1555 | - transform: translateX(2px); | |
| 1556 | -} | |
| 1557 | -.single-forum-post-widget:hover .post-title h6 a { | |
| 1558 | - color: var(--bbpc_brand_color); | |
| 1559 | -} | |
| 1560 | -.single-forum-post-widget .post-title { | |
| 1561 | - margin-bottom: 15px; | |
| 1562 | -} | |
| 1563 | -.single-forum-post-widget .post-title h6 { | |
| 1564 | - margin-bottom: 0; | |
| 1565 | - line-height: 22px; | |
| 1566 | - font-size: 16px; | |
| 1567 | - font-weight: 500; | |
| 1568 | - text-transform: capitalize; | |
| 1569 | -} | |
| 1570 | -.single-forum-post-widget .post-title h6 a { | |
| 1571 | - color: #171d24; | |
| 1572 | - font-size: 18px; | |
| 1573 | -} | |
| 1574 | -.single-forum-post-widget .post-title h6 a:hover { | |
| 1575 | - text-decoration: none; | |
| 1576 | -} | |
| 1577 | -.single-forum-post-widget .post-title i { | |
| 1578 | - font-size: 15px; | |
| 1579 | - color: #2ed83f; | |
| 1580 | - vertical-align: middle; | |
| 1581 | - margin-left: 6px; | |
| 1582 | -} | |
| 1583 | -.single-forum-post-widget .post-info { | |
| 1584 | - display: flex; | |
| 1585 | - flex-wrap: wrap; | |
| 1586 | - margin-bottom: 5px; | |
| 1587 | -} | |
| 1588 | -.single-forum-post-widget .post-info > div { | |
| 1589 | - margin-right: 15px; | |
| 1590 | - display: flex; | |
| 1591 | - color: var(--black_600); | |
| 1592 | - font-size: 14px; | |
| 1593 | - font-weight: 400; | |
| 1594 | - line-height: 16px; | |
| 1595 | -} | |
| 1596 | -.single-forum-post-widget .post-info > div img { | |
| 1597 | - margin-right: 5px; | |
| 1598 | - height: 15px; | |
| 1599 | - width: 15px; | |
| 1600 | -} | |
| 1601 | -.single-forum-post-widget .post-info > div a { | |
| 1602 | - color: #545454; | |
| 1603 | -} | |
| 1604 | -.single-forum-post-widget .post-tags { | |
| 1605 | - display: flex; | |
| 1606 | -} | |
| 1607 | -.single-forum-post-widget .post-tags .single-tag { | |
| 1608 | - padding: 3px 9.5px; | |
| 1609 | - border-radius: 3px; | |
| 1610 | - font-size: 12px; | |
| 1611 | - font-weight: 400; | |
| 1612 | - line-height: 14px; | |
| 1613 | - color: #fff; | |
| 1614 | - margin: 12px 10px 0 0; | |
| 1615 | -} | |
| 1616 | -.single-forum-post-widget .post-tags .single-tag:last-child { | |
| 1617 | - margin-right: 0; | |
| 1618 | -} | |
| 1619 | -.single-forum-post-widget .post-tags .single-tag.tag-jq { | |
| 1620 | - background-color: #f7ab40; | |
| 1621 | -} | |
| 1622 | -.single-forum-post-widget .post-tags .single-tag.tag-php { | |
| 1623 | - background-color: #7543e0; | |
| 1624 | -} | |
| 1625 | -.single-forum-post-widget .post-tags .single-tag.tag-wp { | |
| 1626 | - background-color: #6078ce; | |
| 1627 | -} | |
| 1628 | -.single-forum-post-widget .post-tags .single-tag.tag-js { | |
| 1629 | - background-color: #ff7245; | |
| 1630 | -} | |
| 1631 | -.single-forum-post-widget .post-tags .single-tag.tag-dvlp { | |
| 1632 | - background-color: #48a6ea; | |
| 1633 | -} | |
| 1634 | -.single-forum-post-widget .post-tags .single-tag.tag-ecmrc { | |
| 1635 | - background-color: #333333; | |
| 1636 | -} | |
| 1637 | -.single-forum-post-widget .post-tags .single-tag.tag-foram { | |
| 1638 | - background-color: var(--bbpc_brand_color); | |
| 1639 | -} | |
| 1640 | -.single-forum-post-widget .post-tags .single-tag.tag-hlp { | |
| 1641 | - background-color: #2c53df; | |
| 1642 | -} | |
| 1643 | -.single-forum-post-widget .post-tags .single-tag.tag-sprt { | |
| 1644 | - background-color: #0cc72a; | |
| 1645 | -} | |
| 1646 | -.single-forum-post-widget .post-reach { | |
| 1647 | - border-left: 1px solid #e6e6e6; | |
| 1648 | - padding-left: 15px; | |
| 1649 | -} | |
| 1650 | -.single-forum-post-widget .post-reach > div { | |
| 1651 | - font-size: 12px; | |
| 1652 | - font-weight: 400; | |
| 1653 | - line-height: 14px; | |
| 1654 | - color: #848d95; | |
| 1655 | - margin-top: 10px; | |
| 1656 | - display: flex; | |
| 1657 | - align-items: center; | |
| 1658 | -} | |
| 1659 | -.single-forum-post-widget .post-reach > div:first-child { | |
| 1660 | - margin-top: 0; | |
| 1661 | -} | |
| 1662 | -.single-forum-post-widget .post-reach > div img { | |
| 1663 | - margin-right: 5px; | |
| 1664 | -} | |
| 1665 | - | |
| 1666 | -.community-area .nav-tabs { | |
| 1667 | - border-bottom: 1px solid #e6e6e6; | |
| 1668 | -} | |
| 1669 | -.community-area .nav-tabs .nav-item:hover button { | |
| 1670 | - color: var(--bbpc_brand_color); | |
| 1671 | -} | |
| 1672 | -.community-area .nav-tabs .nav-item button { | |
| 1673 | - background-color: transparent; | |
| 1674 | - font-size: 16px; | |
| 1675 | - font-weight: 400; | |
| 1676 | - line-height: 26px; | |
| 1677 | - color: #535a60; | |
| 1678 | - padding: 10px 0; | |
| 1679 | - margin-right: 30px; | |
| 1680 | - border: none; | |
| 1681 | - border-bottom: 2px solid transparent; | |
| 1682 | - cursor: pointer; | |
| 1683 | -} | |
| 1684 | -.community-area .nav-tabs .nav-item button.active { | |
| 1685 | - border-bottom-color: var(--bbpc_brand_color); | |
| 1686 | - color: #171d24; | |
| 1687 | - font-weight: 500; | |
| 1688 | -} | |
| 1689 | -.community-area .sec-btn-blue { | |
| 1690 | - border-radius: 26px; | |
| 1691 | - border: 1px solid rgba(74, 110, 224, 0.4); | |
| 1692 | - color: #4a6ee0; | |
| 1693 | - background-color: transparent; | |
| 1694 | - font-weight: 700; | |
| 1695 | - font-size: 16px; | |
| 1696 | - padding: 10px 37px; | |
| 1697 | -} | |
| 1698 | -.community-area .sec-btn-blue:hover { | |
| 1699 | - background-color: #4a6ee0; | |
| 1700 | - color: #fff; | |
| 1701 | - box-shadow: none; | |
| 1702 | -} | |
| 1703 | - | |
| 1704 | -.community-topic-widget-box { | |
| 1705 | - box-shadow: 0 1.6px 3.5px 0 rgba(51, 77, 114, 0.1490196078), 0 0.5px 1px 0 rgba(51, 77, 114, 0.1019607843); | |
| 1706 | - border-radius: 10px; | |
| 1707 | - display: flex; | |
| 1708 | - padding: 40px; | |
| 1709 | - transition: all 0.3s ease-out; | |
| 1710 | - background-color: #fff; | |
| 1711 | -} | |
| 1712 | -.community-topic-widget-box:hover { | |
| 1713 | - box-shadow: 0 20px 45px 0 rgba(51, 77, 114, 0.1490196078); | |
| 1714 | -} | |
| 1715 | -.community-topic-widget-box img { | |
| 1716 | - margin-right: 24px; | |
| 1717 | - max-width: 48px; | |
| 1718 | -} | |
| 1719 | -.community-topic-widget-box h5 { | |
| 1720 | - font-size: 18px; | |
| 1721 | - font-weight: 500; | |
| 1722 | - line-height: 21px; | |
| 1723 | - color: #171d24; | |
| 1724 | - margin-bottom: 2px; | |
| 1725 | - margin-top: 0; | |
| 1726 | - text-transform: capitalize; | |
| 1727 | -} | |
| 1728 | -.community-topic-widget-box h5:hover a { | |
| 1729 | - color: var(--bbpc_brand_color); | |
| 1730 | - text-decoration: none; | |
| 1731 | -} | |
| 1732 | -.community-topic-widget-box span { | |
| 1733 | - font-size: 14px; | |
| 1734 | - font-weight: 400; | |
| 1735 | - line-height: 22px; | |
| 1736 | - color: #6a737c; | |
| 1737 | - display: inline-block; | |
| 1738 | -} | |
| 1739 | -.community-topic-widget-box span:nth-child(2) { | |
| 1740 | - padding-right: 8px; | |
| 1741 | -} | |
| 1742 | -.community-topic-widget-box span:nth-child(4) { | |
| 1743 | - padding-left: 8px; | |
| 1744 | -} | |
| 1745 | -.community-topic-widget-box span.vr-line { | |
| 1746 | - color: #bbc0c4; | |
| 1747 | -} | |
| 1748 | - | |
| 1749 | -.nav { | |
| 1750 | - display: flex; | |
| 1751 | - flex-wrap: wrap; | |
| 1752 | - padding-left: 0; | |
| 1753 | - margin-bottom: 0; | |
| 1754 | - list-style: none; | |
| 1755 | - margin-left: 0; | |
| 1756 | -} | |
| 1757 | - | |
| 1758 | -.bbpc-community-topic-widget-main-wrapper { | |
| 1759 | - --bs-gutter-x: 1.5rem; | |
| 1760 | - --bs-gutter-y: 0; | |
| 1761 | - display: grid; | |
| 1762 | - grid-template-columns: repeat(3, 1fr); | |
| 1763 | - grid-gap: 20px; | |
| 1764 | -} | |
| 1765 | -.bbpc-community-topic-widget-main-wrapper .bbpc-community-topic-widget-wrapper { | |
| 1766 | - display: contents; | |
| 1767 | -} | |
| 1768 | -@media (max-width: 1024px) { | |
| 1769 | - .bbpc-community-topic-widget-main-wrapper { | |
| 1770 | - grid-template-columns: repeat(2, 1fr); | |
| 1771 | - } | |
| 1772 | -} | |
| 1773 | -@media (max-width: 768px) { | |
| 1774 | - .bbpc-community-topic-widget-main-wrapper { | |
| 1775 | - grid-template-columns: repeat(1, 1fr); | |
| 1776 | - } | |
| 1777 | -} | |
| 1778 | - | |
| 1779 | -.bbpc-show-more-btn-wrapper { | |
| 1780 | - width: 100%; | |
| 1781 | - text-align: center; | |
| 1782 | -} | |
| 1783 | -.bbpc-show-more-btn-wrapper .show-more-btn { | |
| 1784 | - display: inline-block; | |
| 1785 | - box-shadow: 0 1.6px 3.5px 0 rgba(51, 77, 114, 0.1490196078), 0 0.5px 1px 0 rgba(51, 77, 114, 0.1019607843); | |
| 1786 | - transition: all 0.3s ease-out; | |
| 1787 | - font-size: 18px; | |
| 1788 | - font-weight: 400; | |
| 1789 | - color: #4a6ee0; | |
| 1790 | - height: 50px; | |
| 1791 | - border-radius: 5px; | |
| 1792 | - line-height: 48px; | |
| 1793 | - padding: 0 40px; | |
| 1794 | - text-align: center; | |
| 1795 | - background-color: #fff; | |
| 1796 | - margin-top: 50px; | |
| 1797 | -} | |
| 1798 | -.bbpc-show-more-btn-wrapper .show-more-btn:hover { | |
| 1799 | - box-shadow: 0 10px 30px 0 rgba(51, 77, 114, 0.1215686275); | |
| 1800 | - color: #4a6ee0; | |
| 1801 | -} | |
| 1802 | -.bbpc-show-more-btn-wrapper .show-more-btn i { | |
| 1803 | - color: #4a6ee0; | |
| 1804 | - vertical-align: middle; | |
| 1805 | -} | |
| 1806 | -.bbpc-show-more-btn-wrapper .show-more-btn.show-more-round { | |
| 1807 | - height: 48px; | |
| 1808 | - border-radius: 24px; | |
| 1809 | - line-height: 47px; | |
| 1810 | -} | |
| 1811 | -.bbpc-show-more-btn-wrapper .show-more-btn:hover { | |
| 1812 | - text-decoration: none; | |
| 1813 | -} | |
| 1814 | - | |
| 1815 | -/*------- Forum Tab widget tags --------*/ | |
| 1816 | -.single-forum-post-widget .post-tags a { | |
| 1817 | - font-weight: 400; | |
| 1818 | - line-height: 14px; | |
| 1819 | - font-size: 12px; | |
| 1820 | - padding: 3px 10px; | |
| 1821 | - background: #6078ce; | |
| 1822 | - margin: 12px 10px 0 0; | |
| 1823 | - border-radius: 3px; | |
| 1824 | - color: #fff; | |
| 1825 | - text-decoration: none; | |
| 1826 | -} | |
| 1827 | -.single-forum-post-widget .post-tags a:hover { | |
| 1828 | - background: #4766d5; | |
| 1829 | -} | |
| 1830 | - | |
| 1831 | -.tab-content { | |
| 1832 | - padding-top: 40px; | |
| 1833 | -} | |
| 1834 | -.tab-content .tab { | |
| 1835 | - display: none; | |
| 1836 | -} | |
| 1837 | -.tab-content.active { | |
| 1838 | - display: block; | |
| 1839 | -} | |
| 1840 | - | |
| 1841 | -.community-area .tab-content:not(.active) { | |
| 1842 | - display: none; | |
| 1843 | -} | |
| 1844 | - | |
| 1845 | -.alert-warning { | |
| 1846 | - color: #664d03; | |
| 1847 | - background-color: #fff3cd; | |
| 1848 | - border-color: #ffecb5; | |
| 1849 | -} | |
| 1850 | - | |
| 1851 | -.alert { | |
| 1852 | - position: relative; | |
| 1853 | - padding: 1rem 1rem; | |
| 1854 | - margin-bottom: 1rem; | |
| 1855 | - border: 1px solid transparent; | |
| 1856 | - border-radius: 0.25rem; | |
| 1857 | -} | |
| 1858 | - | |
| 1859 | -.dbl-arrow-upper { | |
| 1860 | - display: inline-block; | |
| 1861 | -} | |
| 1862 | -.dbl-arrow-upper .arrow-cont { | |
| 1863 | - cursor: pointer; | |
| 1864 | - position: relative; | |
| 1865 | - display: inline-block; | |
| 1866 | - height: 24px; | |
| 1867 | - width: 20px; | |
| 1868 | - margin-right: 3px; | |
| 1869 | -} | |
| 1870 | -.dbl-arrow-upper .arrow-cont svg { | |
| 1871 | - position: absolute; | |
| 1872 | - bottom: 0; | |
| 1873 | - margin-left: 0; | |
| 1874 | - background-size: contain; | |
| 1875 | - top: 8px; | |
| 1876 | - left: 0; | |
| 1877 | -} | |
| 1878 | -.dbl-arrow-upper .arrow-cont .second { | |
| 1879 | - margin-top: 5px; | |
| 1880 | -} | |
| 1881 | -.dbl-arrow-upper:hover svg { | |
| 1882 | - animation-name: bounceAlphaUp; | |
| 1883 | - animation-duration: 1.4s; | |
| 1884 | - animation-iteration-count: infinite; | |
| 1885 | - animation-timing-function: linear; | |
| 1886 | -} | |
| 1887 | -.dbl-arrow-upper:hover svg.first { | |
| 1888 | - animation-name: bounceAlphaUp; | |
| 1889 | - animation-duration: 1.4s; | |
| 1890 | - animation-delay: 0.2s; | |
| 1891 | - animation-iteration-count: infinite; | |
| 1892 | - animation-timing-function: linear; | |
| 1893 | -} | |
| 1894 | - | |
| 1895 | -@keyframes bounceAlphaUp { | |
| 1896 | - 0% { | |
| 1897 | - opacity: 1; | |
| 1898 | - transform: translateY(0) scale(1); | |
| 1899 | - } | |
| 1900 | - 25% { | |
| 1901 | - opacity: 0; | |
| 1902 | - transform: translateY(10px) scale(0.9); | |
| 1903 | - } | |
| 1904 | - 26% { | |
| 1905 | - opacity: 0; | |
| 1906 | - transform: translateY(-10px) scale(0.9); | |
| 1907 | - } | |
| 1908 | - 55% { | |
| 1909 | - opacity: 1; | |
| 1910 | - transform: translateY(0) scale(1); | |
| 1911 | - } | |
| 1912 | -} | |
| 1913 | - | |
| 1914 | -/*# sourceMappingURL=el-widgets.css.map */ | |
| 1 | +/*---------------------------------------------------- | |
| 2 | +@File: Default Styles | |
| 3 | + | |
| 4 | +This file contains the styling for the actual template, this | |
| 5 | +is the file you need to edit to change the look of the | |
| 6 | +template. | |
| 7 | +---------------------------------------------------- */ | |
| 8 | +/*===================================================================== | |
| 9 | +@Template Name: Ama | |
| 10 | + | |
| 11 | +@Default Styles | |
| 12 | +Table of Content: | |
| 13 | +01/ Variables | |
| 14 | +92/ Predefine | |
| 15 | +03/ forumPosts | |
| 16 | +04/ forum | |
| 17 | +05/ forums | |
| 18 | + | |
| 19 | + | |
| 20 | +=====================================================================*/ | |
| 21 | +:root { | |
| 22 | + --rob: "Roboto", sans-serif; | |
| 23 | + --great: "Great Vibes", cursive; | |
| 24 | + --bg_gradient: linear-gradient(45deg, #F5FDFF, #FEEFEC); | |
| 25 | + --bbpc_brand_color: var(--bbpc_brand_color_opt,#0866ff); | |
| 26 | + --h_title: #1d2746; | |
| 27 | + --p_color: #6b707f; | |
| 28 | + --bs-white: #fff; | |
| 29 | + --black_25: #f9f9f9; | |
| 30 | + --black_50: #f2f2f2; | |
| 31 | + --black_75: #eeeeee; | |
| 32 | + --black_90: #e0e6f0; | |
| 33 | + --black_100: #d6d9dc; | |
| 34 | + --black_150: #c8ccd0; | |
| 35 | + --black_200: #bbc0c4; | |
| 36 | + --black_300: #9fa6ad; | |
| 37 | + --black_350: #9199a1; | |
| 38 | + --black_400: #848d95; | |
| 39 | + --black_500: #6a737c; | |
| 40 | + --black_600: #535a60; | |
| 41 | + --black_700: #3c4146; | |
| 42 | + --black_750: #2f3337; | |
| 43 | + --black_800: #242729; | |
| 44 | + --black_900: #0c0d0e; | |
| 45 | + --bbpc_color: #078669; | |
| 46 | + --baseColor2: #4a6ee0; | |
| 47 | + --bs_white: #fff; | |
| 48 | +} | |
| 49 | + | |
| 50 | +/*font Variables*/ | |
| 51 | +/**=== Functions ===**/ | |
| 52 | +.col-md-offset-right-1, | |
| 53 | +.col-lg-offset-right-1 { | |
| 54 | + margin-right: 8.33333333%; | |
| 55 | +} | |
| 56 | + | |
| 57 | +.community-post { | |
| 58 | + border-radius: 6px; | |
| 59 | + box-shadow: 0 2px 4px 0 rgba(2, 47, 57, 0.1); | |
| 60 | + padding: 23px 30px; | |
| 61 | + display: flex; | |
| 62 | + background: var(--bs-white); | |
| 63 | + align-items: center; | |
| 64 | + justify-content: space-between; | |
| 65 | + margin-bottom: 10px; | |
| 66 | + transition: all 0.3s ease-in-out; | |
| 67 | + border: 1px solid var(--black_50); | |
| 68 | +} | |
| 69 | +.community-post:hover { | |
| 70 | + box-shadow: 0 24px 40px 0 rgba(2, 47, 57, 0.12); | |
| 71 | + border-color: #eef3f6; | |
| 72 | + transform: translateX(10px); | |
| 73 | +} | |
| 74 | +.community-post .post-content { | |
| 75 | + display: flex; | |
| 76 | + align-items: center; | |
| 77 | + flex-wrap: wrap; | |
| 78 | +} | |
| 79 | +.community-post .post-content .author-avatar { | |
| 80 | + border-radius: 50%; | |
| 81 | + overflow: hidden; | |
| 82 | + margin-top: -2px; | |
| 83 | +} | |
| 84 | +.community-post .post-content .entry-content { | |
| 85 | + color: var(--black_600); | |
| 86 | + font-size: 16px; | |
| 87 | + font-family: "Roboto", sans-serif; | |
| 88 | +} | |
| 89 | +.community-post .post-content img { | |
| 90 | + border-radius: 50%; | |
| 91 | +} | |
| 92 | + | |
| 93 | +.community-post.forum-item { | |
| 94 | + padding: 23px 15px; | |
| 95 | +} | |
| 96 | +.community-post.forum-item .post-content p { | |
| 97 | + font-size: 14px; | |
| 98 | + line-height: 1.3; | |
| 99 | +} | |
| 100 | +@media (max-width: 667px) { | |
| 101 | + .community-post { | |
| 102 | + display: block; | |
| 103 | + } | |
| 104 | +} | |
| 105 | +@media (max-width: 420px) { | |
| 106 | + .community-post { | |
| 107 | + padding: 20px 15px; | |
| 108 | + } | |
| 109 | +} | |
| 110 | +.community-post .post-content .author-avatar.forum-icon { | |
| 111 | + border-radius: 0; | |
| 112 | + margin-right: 0 !important; | |
| 113 | +} | |
| 114 | +.community-post .post-content .author-avatar.forum-icon img { | |
| 115 | + padding: 2px; | |
| 116 | +} | |
| 117 | +@media (max-width: 667px) { | |
| 118 | + .community-post .post-content .author-avatar { | |
| 119 | + margin-right: 20px; | |
| 120 | + } | |
| 121 | +} | |
| 122 | +@media (max-width: 420px) { | |
| 123 | + .community-post .post-content .author-avatar { | |
| 124 | + margin-right: 15px; | |
| 125 | + } | |
| 126 | +} | |
| 127 | +.community-post .post-content .entry-content { | |
| 128 | + flex: 2; | |
| 129 | +} | |
| 130 | +.community-post .post-content .entry-content .post-title { | |
| 131 | + font-size: 18px; | |
| 132 | + font-weight: 500; | |
| 133 | + margin: auto; | |
| 134 | + margin-bottom: 0; | |
| 135 | + line-height: 1.7; | |
| 136 | +} | |
| 137 | +.community-post .post-content .entry-content .post-title a { | |
| 138 | + text-decoration: none; | |
| 139 | +} | |
| 140 | +.community-post .post-content .entry-content .post-title a:hover { | |
| 141 | + color: var(--bbpc_brand_color); | |
| 142 | +} | |
| 143 | +.community-post .post-content .entry-content p { | |
| 144 | + margin: 0; | |
| 145 | +} | |
| 146 | +@media (max-width: 667px) { | |
| 147 | + .community-post .post-meta-wrapper { | |
| 148 | + margin-top: 15px; | |
| 149 | + margin-left: 70px; | |
| 150 | + } | |
| 151 | +} | |
| 152 | +.community-post .post-meta-wrapper .post-meta-info { | |
| 153 | + margin: 0; | |
| 154 | + padding: 0; | |
| 155 | + list-style: none; | |
| 156 | +} | |
| 157 | +@media (max-width: 991px) { | |
| 158 | + .community-post .post-meta-wrapper .post-meta-info li:not(:last-child) { | |
| 159 | + margin-right: 20px; | |
| 160 | + } | |
| 161 | +} | |
| 162 | +.community-post .post-meta-wrapper .post-meta-info li a { | |
| 163 | + display: block; | |
| 164 | + color: var(--black_600); | |
| 165 | +} | |
| 166 | +.community-post .post-meta-wrapper .post-meta-info li a i { | |
| 167 | + margin-right: 10px; | |
| 168 | +} | |
| 169 | +.community-post .post-meta-wrapper .post-meta-info li a:hover { | |
| 170 | + color: var(--bbpc_brand_color); | |
| 171 | +} | |
| 172 | +.community-post.style-two { | |
| 173 | + margin-bottom: 0; | |
| 174 | + border-radius: 0; | |
| 175 | + box-shadow: none; | |
| 176 | + position: relative; | |
| 177 | +} | |
| 178 | +.community-post.style-two .entry-content .post-title { | |
| 179 | + font-size: 16px; | |
| 180 | +} | |
| 181 | +.community-post.style-two .post-meta-wrapper .post-meta-info li i { | |
| 182 | + transition: all 0.3s ease-in-out; | |
| 183 | +} | |
| 184 | +.community-post.style-two .post-meta-wrapper .post-meta-info li:nth-child(2):hover a { | |
| 185 | + color: #b1b5c0; | |
| 186 | +} | |
| 187 | +.community-post.style-two .post-meta-wrapper .post-meta-info li:nth-child(2):hover i { | |
| 188 | + color: #f9ae44; | |
| 189 | +} | |
| 190 | +.community-post.style-two .com-featured { | |
| 191 | + position: absolute; | |
| 192 | + right: 0; | |
| 193 | + top: -2px; | |
| 194 | + height: 30px; | |
| 195 | + width: 30px; | |
| 196 | + z-index: 2; | |
| 197 | + text-align: center; | |
| 198 | + color: #fff; | |
| 199 | + padding: 0 15px; | |
| 200 | +} | |
| 201 | +.community-post.style-two .com-featured i { | |
| 202 | + z-index: 22; | |
| 203 | + position: relative; | |
| 204 | + font-size: 14px; | |
| 205 | +} | |
| 206 | +.community-post.style-two .com-featured:after { | |
| 207 | + content: ""; | |
| 208 | + top: 0; | |
| 209 | + position: absolute; | |
| 210 | + right: 0; | |
| 211 | + width: 0; | |
| 212 | + height: 0; | |
| 213 | + border-left: 30px solid transparent; | |
| 214 | + border-right: 0 solid transparent; | |
| 215 | + border-top: 30px solid #00ae69; | |
| 216 | + z-index: 1; | |
| 217 | +} | |
| 218 | +.community-post.style-two .cat-wrap { | |
| 219 | + display: inline-block; | |
| 220 | + vertical-align: 3px; | |
| 221 | +} | |
| 222 | +.community-post .meta { | |
| 223 | + margin: 0; | |
| 224 | + padding: 0; | |
| 225 | + list-style: none; | |
| 226 | +} | |
| 227 | +.community-post .meta li img { | |
| 228 | + display: inline-block; | |
| 229 | + vertical-align: -2px; | |
| 230 | +} | |
| 231 | +.community-post .meta li i, | |
| 232 | +.community-post .meta li img { | |
| 233 | + margin-right: 10px; | |
| 234 | + font-size: 14px; | |
| 235 | +} | |
| 236 | +.community-post .meta li a { | |
| 237 | + font-size: 14px; | |
| 238 | + color: #838793; | |
| 239 | +} | |
| 240 | +.community-post .meta li a:hover { | |
| 241 | + color: var(--bbpc_brand_color); | |
| 242 | +} | |
| 243 | + | |
| 244 | +.community-post .post-meta-wrapper .post-meta-info li:first-child { | |
| 245 | + margin-right: 40px; | |
| 246 | +} | |
| 247 | + | |
| 248 | +.community-post .post-meta-wrapper .post-meta-info li { | |
| 249 | + display: inline-block; | |
| 250 | +} | |
| 251 | + | |
| 252 | +.forum-post-content .forum-post-btm .taxonomy i, | |
| 253 | +.forum-post-content .forum-post-btm .taxonomy img, | |
| 254 | +.community-post .post-meta-wrapper .post-meta-info li a i, | |
| 255 | +.community-post .post-meta-wrapper .post-meta-info li a img, | |
| 256 | +.community-post.style-two .meta li i, | |
| 257 | +.community-post.style-two .meta li img { | |
| 258 | + margin-right: 5px; | |
| 259 | +} | |
| 260 | + | |
| 261 | +.post-header .category-menu li i, | |
| 262 | +.community-post .post-meta-wrapper .post-meta-info li a i { | |
| 263 | + font-size: 14px; | |
| 264 | +} | |
| 265 | + | |
| 266 | +.forum-category-area .col-custom { | |
| 267 | + width: 20%; | |
| 268 | +} | |
| 269 | +.forum-category-area .single-category-widget { | |
| 270 | + box-shadow: 0 1.6px 3.5px 0 rgba(51, 77, 114, 0.1490196078), 0 0.5px 1px 0 rgba(51, 77, 114, 0.1019607843); | |
| 271 | + background-color: var(--bs-white); | |
| 272 | + border-radius: 10px; | |
| 273 | + text-align: center; | |
| 274 | + padding: 25px; | |
| 275 | + transition: all 0.3s ease-out; | |
| 276 | +} | |
| 277 | +.forum-category-area .single-category-widget:hover { | |
| 278 | + box-shadow: 0 20px 20px 0 rgba(51, 77, 114, 0.0901960784); | |
| 279 | +} | |
| 280 | +.forum-category-area .single-category-widget:hover h5 { | |
| 281 | + color: var(--bbpc_brand_color) !important; | |
| 282 | +} | |
| 283 | +.forum-category-area .single-category-widget h5 { | |
| 284 | + font-size: 18px; | |
| 285 | + text-transform: capitalize; | |
| 286 | + font-family: var(--rob); | |
| 287 | + font-weight: 500; | |
| 288 | + line-height: 1.3; | |
| 289 | + color: #171d24; | |
| 290 | + margin-bottom: 0; | |
| 291 | + margin-top: 23px; | |
| 292 | + transition: all 0.3s ease-out; | |
| 293 | +} | |
| 294 | + | |
| 295 | +.forum-category-area .col-custom { | |
| 296 | + margin-bottom: 30px; | |
| 297 | +} | |
| 298 | +.forum-category-area .col-custom.wow.fadeInUp { | |
| 299 | + padding: 0 12px; | |
| 300 | +} | |
| 301 | + | |
| 302 | +.communities-boxes { | |
| 303 | + display: flex; | |
| 304 | + flex-wrap: wrap; | |
| 305 | + margin: 0 -30px; | |
| 306 | + gap: 30px; | |
| 307 | +} | |
| 308 | +@media (max-width: 1025px) { | |
| 309 | + .communities-boxes { | |
| 310 | + margin: 0 -10px; | |
| 311 | + } | |
| 312 | +} | |
| 313 | +@media (max-width: 992px) { | |
| 314 | + .communities-boxes { | |
| 315 | + flex-wrap: wrap; | |
| 316 | + justify-content: center; | |
| 317 | + width: calc(100% + 30px); | |
| 318 | + } | |
| 319 | +} | |
| 320 | +@media (max-width: 420px) { | |
| 321 | + .communities-boxes { | |
| 322 | + width: calc(100% + 15px); | |
| 323 | + } | |
| 324 | +} | |
| 325 | +.communities-boxes .com-box { | |
| 326 | + text-align: center; | |
| 327 | + margin-bottom: 57px; | |
| 328 | + width: 20%; | |
| 329 | + flex: 0 0 200px; | |
| 330 | +} | |
| 331 | +@media (max-width: 1200px) { | |
| 332 | + .communities-boxes .com-box { | |
| 333 | + flex: 0 0 165px; | |
| 334 | + } | |
| 335 | +} | |
| 336 | +@media (max-width: 991px) { | |
| 337 | + .communities-boxes .com-box { | |
| 338 | + flex: 0 0 180px; | |
| 339 | + } | |
| 340 | +} | |
| 341 | +@media (max-width: 768px) { | |
| 342 | + .communities-boxes .com-box { | |
| 343 | + flex: 0 0 185px; | |
| 344 | + } | |
| 345 | +} | |
| 346 | +@media (max-width: 426px) { | |
| 347 | + .communities-boxes .com-box { | |
| 348 | + flex: 0 0 170px; | |
| 349 | + margin-bottom: 30px; | |
| 350 | + } | |
| 351 | +} | |
| 352 | +.communities-boxes .com-box .icon-container { | |
| 353 | + border-radius: 6px; | |
| 354 | + background: var(--bs-white); | |
| 355 | + box-shadow: 0 40px 70px 0 rgba(2, 47, 57, 0.1); | |
| 356 | + display: flex; | |
| 357 | + align-items: center; | |
| 358 | + justify-content: center; | |
| 359 | + height: 100px; | |
| 360 | + width: 100px; | |
| 361 | + margin: 0 auto 20px; | |
| 362 | +} | |
| 363 | +.communities-boxes .com-box .icon-container img { | |
| 364 | + width: 40px; | |
| 365 | + height: 40px; | |
| 366 | + object-fit: cover; | |
| 367 | +} | |
| 368 | +.communities-boxes .com-box .com-box-content .title { | |
| 369 | + font-size: 20px; | |
| 370 | + line-height: 26px; | |
| 371 | + font-weight: 500; | |
| 372 | + color: var(--black_800); | |
| 373 | + margin-bottom: 5px; | |
| 374 | + transition: all 0.3s ease-in-out; | |
| 375 | + letter-spacing: normal; | |
| 376 | + margin-top: 10px; | |
| 377 | +} | |
| 378 | +.communities-boxes .com-box .com-box-content .title a { | |
| 379 | + color: var(--black_800); | |
| 380 | +} | |
| 381 | +.communities-boxes .com-box .com-box-content .title a:hover { | |
| 382 | + color: var(--bbpc_brand_color); | |
| 383 | + text-decoration: none; | |
| 384 | +} | |
| 385 | +.communities-boxes .com-box .com-box-content .title:hover { | |
| 386 | + color: var(--bbpc_brand_color); | |
| 387 | +} | |
| 388 | +.communities-boxes .com-box .com-box-content .total-post { | |
| 389 | + color: var(--p_color); | |
| 390 | + font-size: 14px; | |
| 391 | + margin-top: 0; | |
| 392 | +} | |
| 393 | + | |
| 394 | +.more-communities { | |
| 395 | + padding: 22px 0; | |
| 396 | + border-top: 1px solid #e8ecee; | |
| 397 | + border-bottom: 1px solid #e8ecee; | |
| 398 | +} | |
| 399 | +.more-communities .collapse-wrap, | |
| 400 | +.more-communities .forumax-collapse-wrap { | |
| 401 | + margin-top: 80px; | |
| 402 | + display: none; | |
| 403 | +} | |
| 404 | +.more-communities .collapse-btn-wrap, | |
| 405 | +.more-communities .forumax-collapse-btn-wrap { | |
| 406 | + text-align: center; | |
| 407 | + display: table; | |
| 408 | + color: var(--black_600); | |
| 409 | + font-weight: 500; | |
| 410 | + margin: auto; | |
| 411 | +} | |
| 412 | +.more-communities .collapse-btn-wrap:hover, | |
| 413 | +.more-communities .forumax-collapse-btn-wrap:hover { | |
| 414 | + text-decoration: none; | |
| 415 | + color: var(--black_800); | |
| 416 | +} | |
| 417 | +.more-communities .collapse-btn-wrap svg, | |
| 418 | +.more-communities .forumax-collapse-btn-wrap svg { | |
| 419 | + position: relative; | |
| 420 | + vertical-align: middle; | |
| 421 | + display: inline; | |
| 422 | +} | |
| 423 | +.more-communities .collapse-btn-wrap .icon_plus path, | |
| 424 | +.more-communities .collapse-btn-wrap .icon_plus line, | |
| 425 | +.more-communities .collapse-btn-wrap .icon_minus path, | |
| 426 | +.more-communities .collapse-btn-wrap .icon_minus line, | |
| 427 | +.more-communities .forumax-collapse-btn-wrap .icon_plus path, | |
| 428 | +.more-communities .forumax-collapse-btn-wrap .icon_plus line, | |
| 429 | +.more-communities .forumax-collapse-btn-wrap .icon_minus path, | |
| 430 | +.more-communities .forumax-collapse-btn-wrap .icon_minus line { | |
| 431 | + stroke: var(--bbpc_brand_color); | |
| 432 | +} | |
| 433 | +.more-communities .collapse-btn-wrap .icon_minus, | |
| 434 | +.more-communities .forumax-collapse-btn-wrap .icon_minus { | |
| 435 | + display: none; | |
| 436 | +} | |
| 437 | +.more-communities .collapse-btn-wrap.active .icon_plus, | |
| 438 | +.more-communities .forumax-collapse-btn-wrap.active .icon_plus { | |
| 439 | + display: none; | |
| 440 | +} | |
| 441 | +.more-communities .collapse-btn-wrap.active .icon_minus, | |
| 442 | +.more-communities .forumax-collapse-btn-wrap.active .icon_minus { | |
| 443 | + display: initial; | |
| 444 | +} | |
| 445 | + | |
| 446 | +body.body_dark .communities-boxes .com-box .com-box-content .title a { | |
| 447 | + color: #fff; | |
| 448 | +} | |
| 449 | +body.body_dark .communities-boxes .com-box .com-box-content .title a:hover { | |
| 450 | + color: var(--bbpc_brand_color); | |
| 451 | +} | |
| 452 | +body.body_dark .communities-boxes .com-box .com-box-content .total-post { | |
| 453 | + color: #8b8b8b; | |
| 454 | +} | |
| 455 | +body.body_dark .more-communities { | |
| 456 | + border-color: #272727; | |
| 457 | +} | |
| 458 | +body.body_dark .single-forum-post-widget .post-info div { | |
| 459 | + color: #848d95; | |
| 460 | +} | |
| 461 | +body.body_dark .single-forum-post-widget .post-info .post-category a { | |
| 462 | + color: #848d95; | |
| 463 | +} | |
| 464 | +body.body_dark .single-forum-post-widget .post-info .post-category a:hover { | |
| 465 | + color: var(--bbpc_brand_color); | |
| 466 | +} | |
| 467 | +body.body_dark .community-area .nav-tabs .nav-item button.active { | |
| 468 | + color: #fff; | |
| 469 | +} | |
| 470 | + | |
| 471 | +/** === Widgets === **/ | |
| 472 | +.widget_display_stats dl dt { | |
| 473 | + float: left; | |
| 474 | + clear: left; | |
| 475 | + margin: 0 0 10px; | |
| 476 | + font-weight: 500; | |
| 477 | +} | |
| 478 | + | |
| 479 | +.widget_display_stats dl dd { | |
| 480 | + float: right; | |
| 481 | + margin: 0; | |
| 482 | +} | |
| 483 | + | |
| 484 | +.widget_display_replies li:before { | |
| 485 | + font-family: eleganticons; | |
| 486 | + content: "w"; | |
| 487 | + font-size: 15px !important; | |
| 488 | + margin: 0 12px 0 0 !important; | |
| 489 | + padding: 0px !important; | |
| 490 | + line-height: 23px; | |
| 491 | +} | |
| 492 | + | |
| 493 | +.widget_display_topics li div { | |
| 494 | + color: var(--black_400); | |
| 495 | +} | |
| 496 | +.widget_display_topics li::before { | |
| 497 | + font-family: eleganticons; | |
| 498 | + content: "b"; | |
| 499 | + margin: -3px 12px 0 0; | |
| 500 | + font-size: 15px; | |
| 501 | + color: var(--black_800); | |
| 502 | + position: absolute; | |
| 503 | + left: 0; | |
| 504 | + top: 0; | |
| 505 | +} | |
| 506 | + | |
| 507 | +.widget_display_topics .bbp-forum-title, | |
| 508 | +.widget_display_replies .bbp-forum-title { | |
| 509 | + display: inline-block; | |
| 510 | + line-height: 1.36; | |
| 511 | + color: var(--black_900); | |
| 512 | +} | |
| 513 | + | |
| 514 | +.widget_display_topics li { | |
| 515 | + padding-left: 30px; | |
| 516 | +} | |
| 517 | + | |
| 518 | +.widget_display_topics li, | |
| 519 | +.widget_display_replies li { | |
| 520 | + position: relative; | |
| 521 | + margin-bottom: 10px; | |
| 522 | + padding-bottom: 10px; | |
| 523 | + border-bottom: 1px solid #e5e7e9; | |
| 524 | + font-size: 16px; | |
| 525 | +} | |
| 526 | +.widget_display_topics li time, | |
| 527 | +.widget_display_replies li time { | |
| 528 | + color: var(--black_400); | |
| 529 | + display: block; | |
| 530 | + font-size: 14px; | |
| 531 | +} | |
| 532 | +.widget_display_topics li div, | |
| 533 | +.widget_display_replies li div { | |
| 534 | + font-size: 14px; | |
| 535 | +} | |
| 536 | + | |
| 537 | +.widget_display_topics li a, | |
| 538 | +.widget_display_replies li a { | |
| 539 | + color: var(--black_800); | |
| 540 | +} | |
| 541 | +.widget_display_topics li a .bbp-author-avatar img, | |
| 542 | +.widget_display_replies li a .bbp-author-avatar img { | |
| 543 | + border-radius: 50px !important; | |
| 544 | +} | |
| 545 | + | |
| 546 | +.widget_display_replies li .bbp-author-avatar { | |
| 547 | + margin-right: 5px; | |
| 548 | +} | |
| 549 | + | |
| 550 | +.widget_display_topics li a:hover, | |
| 551 | +.widget_display_replies li a:hover { | |
| 552 | + color: var(--bbpc_brand_color); | |
| 553 | +} | |
| 554 | + | |
| 555 | +.bbp-logged-in .avatar { | |
| 556 | + float: left; | |
| 557 | + margin: 0 15px 0 0; | |
| 558 | + border-radius: 99%; | |
| 559 | +} | |
| 560 | + | |
| 561 | +.bbp-logged-in h4 { | |
| 562 | + font-weight: normal; | |
| 563 | + font-size: 18px; | |
| 564 | + clear: none; | |
| 565 | + margin: 0 0 5px; | |
| 566 | +} | |
| 567 | + | |
| 568 | +.bbp-logged-in h4 a { | |
| 569 | + color: #333; | |
| 570 | + font-weight: 500; | |
| 571 | +} | |
| 572 | + | |
| 573 | +.bbp-logged-in a.button.logout-link:hover, | |
| 574 | +.bbp-logged-in h4 a:hover { | |
| 575 | + color: var(--bbpc_brand_color); | |
| 576 | +} | |
| 577 | + | |
| 578 | +.bbp-logged-in a.button.logout-link:hover, | |
| 579 | +.bbp-logged-in a.button.logout-link { | |
| 580 | + color: #666; | |
| 581 | +} | |
| 582 | + | |
| 583 | +.forum-post-content .content img { | |
| 584 | + max-width: 100%; | |
| 585 | + height: auto; | |
| 586 | +} | |
| 587 | + | |
| 588 | +ul.bbp-topics-widget.newness img { | |
| 589 | + border-radius: 50%; | |
| 590 | + margin: 5px; | |
| 591 | +} | |
| 592 | + | |
| 593 | +.bbp-submit-wrapper { | |
| 594 | + float: left; | |
| 595 | + margin-top: 0; | |
| 596 | +} | |
| 597 | + | |
| 598 | +.forum-post-content .forum-post-btm .taxonomy.forum-post-cat { | |
| 599 | + display: flex; | |
| 600 | +} | |
| 601 | + | |
| 602 | +.bbp-topic-reply-link { | |
| 603 | + padding: 6px 20px; | |
| 604 | + font-weight: 400; | |
| 605 | + border-radius: 2px; | |
| 606 | + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.18s ease-in-out; | |
| 607 | + background: #fff; | |
| 608 | + border: 1px solid #d0d8dc; | |
| 609 | + color: var(--black_800); | |
| 610 | + height: 26px; | |
| 611 | + font-size: 12px; | |
| 612 | + line-height: 26px; | |
| 613 | +} | |
| 614 | + | |
| 615 | +.comment-content .bbp-topic-reply-link:hover { | |
| 616 | + background: #fff; | |
| 617 | + border: 1px solid var(--black_800); | |
| 618 | + color: var(--black_800); | |
| 619 | +} | |
| 620 | + | |
| 621 | +.page-numbers { | |
| 622 | + cursor: pointer !important; | |
| 623 | +} | |
| 624 | + | |
| 625 | +.pagination-wrapper .page-numbers.next { | |
| 626 | + display: flex; | |
| 627 | + align-items: center; | |
| 628 | + justify-content: center; | |
| 629 | + padding-bottom: 2px; | |
| 630 | +} | |
| 631 | + | |
| 632 | +.post-header .support-total-info li a { | |
| 633 | + font-weight: 400; | |
| 634 | +} | |
| 635 | + | |
| 636 | +.post-header .support-total-info li a { | |
| 637 | + color: #6b707f; | |
| 638 | +} | |
| 639 | + | |
| 640 | +.post-header .support-total-info li a.open-data.loading { | |
| 641 | + color: var(--black_800); | |
| 642 | + font-weight: 500; | |
| 643 | +} | |
| 644 | + | |
| 645 | +#tagList { | |
| 646 | + padding-left: 40px; | |
| 647 | +} | |
| 648 | + | |
| 649 | +.userlist { | |
| 650 | + padding-left: 15px; | |
| 651 | +} | |
| 652 | + | |
| 653 | +.post-header .category-menu .all-users a { | |
| 654 | + position: relative; | |
| 655 | +} | |
| 656 | + | |
| 657 | +.post-header .category-menu .all-users a .count { | |
| 658 | + background: #ebedf0; | |
| 659 | + border-radius: 10px; | |
| 660 | + color: #838793; | |
| 661 | + font-size: 12px; | |
| 662 | + margin-left: 5px; | |
| 663 | + padding: 1px 5px 0; | |
| 664 | + top: 8px; | |
| 665 | + width: auto; | |
| 666 | + height: auto; | |
| 667 | +} | |
| 668 | + | |
| 669 | +/*=========== Forum Post Widget css ==========*/ | |
| 670 | +.forum-post-widget .widget-header h2 { | |
| 671 | + font-size: 40px; | |
| 672 | + font-weight: 700; | |
| 673 | + line-height: 50px; | |
| 674 | + color: #000; | |
| 675 | +} | |
| 676 | +.forum-post-widget .widget-header .action_btn { | |
| 677 | + padding-bottom: 8px; | |
| 678 | + padding-top: 8px; | |
| 679 | + box-shadow: none; | |
| 680 | +} | |
| 681 | +.forum-post-widget .widget-header .action_btn:hover { | |
| 682 | + box-shadow: 0 20px 30px 0 rgba(17, 166, 131, 0.24); | |
| 683 | +} | |
| 684 | +.forum-post-widget .post-filter-widget { | |
| 685 | + box-shadow: 0 1.6px 3.5px 0 rgba(51, 77, 114, 0.1490196078), 0 0.5px 1px 0 rgba(51, 77, 114, 0.1019607843); | |
| 686 | + border-radius: 10px; | |
| 687 | + background-color: var(--bs-white); | |
| 688 | + padding: 16.5px 30px; | |
| 689 | + display: flex; | |
| 690 | + flex-wrap: wrap; | |
| 691 | + margin-bottom: 20px; | |
| 692 | +} | |
| 693 | +.forum-post-widget .post-filter-widget .single-filter-item { | |
| 694 | + margin-right: 30px; | |
| 695 | + display: flex; | |
| 696 | + align-items: center; | |
| 697 | +} | |
| 698 | +.forum-post-widget .post-filter-widget .single-filter-item a.data-active { | |
| 699 | + color: var(--bbpc_brand_color); | |
| 700 | +} | |
| 701 | +.forum-post-widget .post-filter-widget .single-filter-item i { | |
| 702 | + margin-right: 5px; | |
| 703 | + font-size: 12px; | |
| 704 | +} | |
| 705 | +@media (max-width: 1200px) and (min-width: 992px) { | |
| 706 | + .forum-post-widget .post-filter-widget .single-filter-item { | |
| 707 | + margin-right: 20px; | |
| 708 | + } | |
| 709 | +} | |
| 710 | +.forum-post-widget .post-filter-widget .single-filter-item:last-child { | |
| 711 | + margin-right: 0; | |
| 712 | +} | |
| 713 | +.forum-post-widget .post-filter-widget .single-filter-item input[type=radio] { | |
| 714 | + display: none; | |
| 715 | +} | |
| 716 | +.forum-post-widget .post-filter-widget .single-filter-item input[type=radio]:checked { | |
| 717 | + display: none; | |
| 718 | +} | |
| 719 | +.forum-post-widget .post-filter-widget .single-filter-item input[type=radio]:checked ~ label .main-img { | |
| 720 | + display: none; | |
| 721 | +} | |
| 722 | +.forum-post-widget .post-filter-widget .single-filter-item input[type=radio]:checked ~ label .hover-img { | |
| 723 | + display: block; | |
| 724 | +} | |
| 725 | +.forum-post-widget .post-filter-widget .single-filter-item input[type=radio]:checked ~ label { | |
| 726 | + color: var(--bbpc_brand_color); | |
| 727 | +} | |
| 728 | +.forum-post-widget .post-filter-widget .single-filter-item label { | |
| 729 | + display: flex; | |
| 730 | + align-items: center; | |
| 731 | + cursor: pointer; | |
| 732 | +} | |
| 733 | +.forum-post-widget .post-filter-widget .single-filter-item label img { | |
| 734 | + margin-right: 8.5px; | |
| 735 | + margin-bottom: 1px; | |
| 736 | +} | |
| 737 | +.forum-post-widget .post-filter-widget .single-filter-item label .main-img { | |
| 738 | + display: block; | |
| 739 | +} | |
| 740 | +.forum-post-widget .post-filter-widget .single-filter-item label .hover-img { | |
| 741 | + display: none; | |
| 742 | +} | |
| 743 | +.forum-post-widget .post-filter-widget .single-filter-item label { | |
| 744 | + font-size: 14px; | |
| 745 | + font-weight: 400; | |
| 746 | + line-height: 16px; | |
| 747 | + color: #6a737c; | |
| 748 | +} | |
| 749 | + | |
| 750 | +.single-forum-post-widget { | |
| 751 | + box-shadow: 0 1.6px 3.5px 0 rgba(51, 77, 114, 0.1490196078), 0 0.5px 1px 0 rgba(51, 77, 114, 0.1019607843); | |
| 752 | + border-radius: 10px; | |
| 753 | + background-color: var(--bs-white); | |
| 754 | + transition: all 0.3s ease-out; | |
| 755 | + padding: 22px 35px 18px 30px; | |
| 756 | + display: flex; | |
| 757 | + align-items: center; | |
| 758 | + justify-content: space-between; | |
| 759 | + margin-top: 10px; | |
| 760 | +} | |
| 761 | +.single-forum-post-widget:first-child { | |
| 762 | + margin-top: 0; | |
| 763 | +} | |
| 764 | +.single-forum-post-widget:hover { | |
| 765 | + box-shadow: 0 20px 45px 0 rgba(51, 77, 114, 0.1490196078); | |
| 766 | + transform: translateX(2px); | |
| 767 | +} | |
| 768 | +.single-forum-post-widget:hover .post-title h6 a { | |
| 769 | + color: var(--bbpc_brand_color); | |
| 770 | +} | |
| 771 | +.single-forum-post-widget .post-title { | |
| 772 | + margin-bottom: 10px; | |
| 773 | +} | |
| 774 | +.single-forum-post-widget .post-title h6 { | |
| 775 | + margin-top: 0; | |
| 776 | + margin-bottom: 0; | |
| 777 | + line-height: 22px; | |
| 778 | + font-size: 16px; | |
| 779 | + font-weight: 500; | |
| 780 | +} | |
| 781 | +.single-forum-post-widget .post-title h6 a { | |
| 782 | + color: var(--black_800); | |
| 783 | + font-size: 18px; | |
| 784 | +} | |
| 785 | +.single-forum-post-widget .post-title i { | |
| 786 | + font-size: 15px; | |
| 787 | + color: #2ed83f; | |
| 788 | + vertical-align: middle; | |
| 789 | + margin-left: 6px; | |
| 790 | +} | |
| 791 | +.single-forum-post-widget .post-info { | |
| 792 | + display: flex; | |
| 793 | + flex-wrap: wrap; | |
| 794 | +} | |
| 795 | +.single-forum-post-widget .post-info > div { | |
| 796 | + margin-right: 15px; | |
| 797 | +} | |
| 798 | +.single-forum-post-widget .post-info > div img { | |
| 799 | + margin-right: 5px; | |
| 800 | + height: 15px; | |
| 801 | + width: 15px; | |
| 802 | + margin-top: 0px; | |
| 803 | +} | |
| 804 | +.single-forum-post-widget .post-info > div { | |
| 805 | + color: var(--black_600); | |
| 806 | + font-size: 14px; | |
| 807 | + font-weight: 400; | |
| 808 | + line-height: 16px; | |
| 809 | +} | |
| 810 | +.single-forum-post-widget .post-info .post-category a { | |
| 811 | + color: #4a6ee0; | |
| 812 | +} | |
| 813 | +.single-forum-post-widget .post-tags { | |
| 814 | + display: flex; | |
| 815 | +} | |
| 816 | +.single-forum-post-widget .post-tags .single-tag { | |
| 817 | + padding: 3px 9.5px; | |
| 818 | + border-radius: 3px; | |
| 819 | + font-size: 12px; | |
| 820 | + font-weight: 400; | |
| 821 | + line-height: 14px; | |
| 822 | + color: #fff; | |
| 823 | + margin: 12px 10px 0 0; | |
| 824 | +} | |
| 825 | +.single-forum-post-widget .post-tags .single-tag:last-child { | |
| 826 | + margin-right: 0; | |
| 827 | +} | |
| 828 | +.single-forum-post-widget .post-tags .single-tag.tag-jq { | |
| 829 | + background-color: #f7ab40; | |
| 830 | +} | |
| 831 | +.single-forum-post-widget .post-tags .single-tag.tag-php { | |
| 832 | + background-color: #7543e0; | |
| 833 | +} | |
| 834 | +.single-forum-post-widget .post-tags .single-tag.tag-wp { | |
| 835 | + background-color: #6078ce; | |
| 836 | +} | |
| 837 | +.single-forum-post-widget .post-tags .single-tag.tag-js { | |
| 838 | + background-color: #ff7245; | |
| 839 | +} | |
| 840 | +.single-forum-post-widget .post-tags .single-tag.tag-dvlp { | |
| 841 | + background-color: #48a6ea; | |
| 842 | +} | |
| 843 | +.single-forum-post-widget .post-tags .single-tag.tag-ecmrc { | |
| 844 | + background-color: #333333; | |
| 845 | +} | |
| 846 | +.single-forum-post-widget .post-tags .single-tag.tag-foram { | |
| 847 | + background-color: var(--bbpc_brand_color); | |
| 848 | +} | |
| 849 | +.single-forum-post-widget .post-tags .single-tag.tag-hlp { | |
| 850 | + background-color: #2c53df; | |
| 851 | +} | |
| 852 | +.single-forum-post-widget .post-tags .single-tag.tag-sprt { | |
| 853 | + background-color: #0cc72a; | |
| 854 | +} | |
| 855 | +.single-forum-post-widget .post-reach { | |
| 856 | + border-left: 1px solid var(--black_50); | |
| 857 | + padding-left: 10px; | |
| 858 | +} | |
| 859 | +.single-forum-post-widget .post-reach > div { | |
| 860 | + font-size: 12px; | |
| 861 | + font-weight: 400; | |
| 862 | + line-height: 14px; | |
| 863 | + color: #848d95; | |
| 864 | + margin-top: 10px; | |
| 865 | + display: flex; | |
| 866 | + align-items: center; | |
| 867 | +} | |
| 868 | +.single-forum-post-widget .post-reach > div:first-child { | |
| 869 | + margin-top: 0; | |
| 870 | +} | |
| 871 | +.single-forum-post-widget .post-reach > div img { | |
| 872 | + margin-right: 5px; | |
| 873 | +} | |
| 874 | + | |
| 875 | +.single-forum-post-widget .post-category img { | |
| 876 | + width: 20px; | |
| 877 | + height: auto; | |
| 878 | + border-radius: 50%; | |
| 879 | +} | |
| 880 | + | |
| 881 | +.single-filter-item a { | |
| 882 | + color: var(--black_600); | |
| 883 | +} | |
| 884 | +.single-filter-item a:hover { | |
| 885 | + text-decoration: none; | |
| 886 | +} | |
| 887 | + | |
| 888 | +.single-forum-post-widget .post-content .post-category a { | |
| 889 | + font-size: 14px; | |
| 890 | + color: var(--black_600); | |
| 891 | + gap: 5px; | |
| 892 | +} | |
| 893 | +.single-forum-post-widget .post-content .post-category a:hover { | |
| 894 | + color: var(--bbpc_brand_color); | |
| 895 | + text-decoration: none; | |
| 896 | +} | |
| 897 | + | |
| 898 | +body.body_dark .forum-post-widget .post-filter-widget .single-filter-item svg, body.body_dark .forum-post-widget .post-filter-widget .single-filter-item path { | |
| 899 | + fill: darkgrey; | |
| 900 | +} | |
| 901 | + | |
| 902 | +#aj-post-filter-widget svg circle.bbpc-preloader { | |
| 903 | + stroke: var(--bbpc_brand_color) !important; | |
| 904 | +} | |
| 905 | + | |
| 906 | +.ama-search-widget { | |
| 907 | + position: relative; | |
| 908 | + margin-left: auto; | |
| 909 | + margin-right: auto; | |
| 910 | +} | |
| 911 | +.ama-search-widget .header_search_keyword { | |
| 912 | + text-align: left; | |
| 913 | + display: flex; | |
| 914 | + flex-wrap: wrap; | |
| 915 | + align-items: center; | |
| 916 | + font-weight: 500; | |
| 917 | + justify-content: center; | |
| 918 | + margin-top: 10px; | |
| 919 | +} | |
| 920 | +.ama-search-widget .header_search_keyword span { | |
| 921 | + font-size: 14px; | |
| 922 | + margin-right: 10px; | |
| 923 | +} | |
| 924 | +.ama-search-widget .header_search_keyword ul { | |
| 925 | + margin: 0; | |
| 926 | +} | |
| 927 | +.ama-search-widget .header_search_keyword ul li { | |
| 928 | + display: inline-block; | |
| 929 | + margin: 0 3px 0; | |
| 930 | +} | |
| 931 | +.ama-search-widget .header_search_keyword ul li a { | |
| 932 | + display: block; | |
| 933 | + font-size: 13px; | |
| 934 | + padding: 0 19px; | |
| 935 | + border-radius: 45px; | |
| 936 | + background: var(--bbpc_color); | |
| 937 | + color: #fff; | |
| 938 | + font-weight: normal; | |
| 939 | +} | |
| 940 | +.ama-search-widget .header_search_keyword ul li a.header-search-form__keywords-label { | |
| 941 | + color: var(--black_800); | |
| 942 | +} | |
| 943 | +.ama-search-widget .search-box { | |
| 944 | + z-index: 99; | |
| 945 | + position: relative; | |
| 946 | +} | |
| 947 | +.ama-search-widget .search-box svg { | |
| 948 | + position: absolute; | |
| 949 | + right: 8px; | |
| 950 | + top: 49.59999%; | |
| 951 | + transform: translateY(-50%); | |
| 952 | + line-height: 22px; | |
| 953 | + padding: 10px; | |
| 954 | + border-radius: 4px; | |
| 955 | + border-left-color: transparent; | |
| 956 | + box-sizing: border-box; | |
| 957 | + color: var(--bbpc_brand_color); | |
| 958 | +} | |
| 959 | +.ama-search-widget .search-box input#searchInput { | |
| 960 | + border: 0 solid transparent; | |
| 961 | + box-shadow: none; | |
| 962 | +} | |
| 963 | +.ama-search-widget .search-box input { | |
| 964 | + width: 100%; | |
| 965 | + border-radius: 4px; | |
| 966 | + line-height: 35px; | |
| 967 | + text-indent: 15px; | |
| 968 | + padding-right: 43px; | |
| 969 | +} | |
| 970 | +.ama-search-widget .search-box #searchInput + .spinner { | |
| 971 | + position: absolute; | |
| 972 | + right: 45px; | |
| 973 | + top: 50% !important; | |
| 974 | + transform: translateY(-55%); | |
| 975 | + display: none; | |
| 976 | + background: #fff; | |
| 977 | + z-index: 999; | |
| 978 | +} | |
| 979 | +.ama-search-widget .search-box #searchInput + .spinner img { | |
| 980 | + width: 22px; | |
| 981 | +} | |
| 982 | +.ama-search-widget .elementor img { | |
| 983 | + height: auto; | |
| 984 | + max-width: 100%; | |
| 985 | + border: none; | |
| 986 | + border-radius: 0; | |
| 987 | + -webkit-box-shadow: none; | |
| 988 | + box-shadow: none; | |
| 989 | +} | |
| 990 | + | |
| 991 | +ul.list-unstyled { | |
| 992 | + padding-left: 0; | |
| 993 | +} | |
| 994 | + | |
| 995 | +.ama-search-keyword-wrapper .header_search_keyword ul li a { | |
| 996 | + color: var(--black_600); | |
| 997 | + background: var(--black_50); | |
| 998 | + font-weight: normal; | |
| 999 | +} | |
| 1000 | + | |
| 1001 | +/* ------- Forum & Search -------- */ | |
| 1002 | +.single-forum-post-widget .post-category img { | |
| 1003 | + width: 15px; | |
| 1004 | + height: auto; | |
| 1005 | +} | |
| 1006 | + | |
| 1007 | +.single-filter-item a { | |
| 1008 | + color: var(--black_600); | |
| 1009 | +} | |
| 1010 | + | |
| 1011 | +/** === Doc search form result === **/ | |
| 1012 | +#bbpc-search-result { | |
| 1013 | + position: absolute; | |
| 1014 | + width: 100%; | |
| 1015 | + background: var(--bs-white); | |
| 1016 | + font-size: 14px; | |
| 1017 | + font-weight: 400; | |
| 1018 | + display: none; | |
| 1019 | + transition: all 0.4s; | |
| 1020 | + margin-top: 2px; | |
| 1021 | + border: 1px solid var(--black_50); | |
| 1022 | + border-radius: 4px; | |
| 1023 | + box-shadow: 0 3px 4px 0 rgba(4, 73, 89, 0.06); | |
| 1024 | + padding: 20px 25px; | |
| 1025 | + top: 45px; | |
| 1026 | + overflow-y: auto; | |
| 1027 | + max-height: 90vh; | |
| 1028 | +} | |
| 1029 | +#bbpc-search-result::before { | |
| 1030 | + content: ""; | |
| 1031 | + width: 12px; | |
| 1032 | + height: 12px; | |
| 1033 | + background: var(--bs-white); | |
| 1034 | + position: absolute; | |
| 1035 | + top: -6px; | |
| 1036 | + transform: rotate(45deg); | |
| 1037 | + left: 40px; | |
| 1038 | + border-left: 1px solid var(--black_50); | |
| 1039 | + border-top: 1px solid var(--black_50); | |
| 1040 | +} | |
| 1041 | +#bbpc-search-result .searchbar-tabs { | |
| 1042 | + padding: 0 10px 15px 0; | |
| 1043 | +} | |
| 1044 | +#bbpc-search-result a { | |
| 1045 | + text-decoration: none; | |
| 1046 | +} | |
| 1047 | +#bbpc-search-result.ajax-search { | |
| 1048 | + display: block; | |
| 1049 | +} | |
| 1050 | +#bbpc-search-result .not-found-text, | |
| 1051 | +#bbpc-search-result .bbpc-not-found-text { | |
| 1052 | + display: none; | |
| 1053 | + font-weight: 700; | |
| 1054 | + font-size: 20px; | |
| 1055 | + margin: 12px 0 5px; | |
| 1056 | + letter-spacing: 0.1px; | |
| 1057 | +} | |
| 1058 | + | |
| 1059 | +.search-results-tab .bbpc-search-title { | |
| 1060 | + font-size: 16px; | |
| 1061 | + color: var(--h_title); | |
| 1062 | + display: block; | |
| 1063 | + border-bottom: 1px solid var(--black_50); | |
| 1064 | + font-weight: 500; | |
| 1065 | + text-align: left; | |
| 1066 | + padding-left: 8px; | |
| 1067 | + margin: 12px 0 0; | |
| 1068 | + padding-bottom: 8px; | |
| 1069 | + text-transform: capitalize; | |
| 1070 | +} | |
| 1071 | + | |
| 1072 | +/* | |
| 1073 | + keywords | |
| 1074 | + */ | |
| 1075 | +.bbpc-search-keyword { | |
| 1076 | + display: block; | |
| 1077 | + text-align: center; | |
| 1078 | + margin: 15px 0 5px; | |
| 1079 | +} | |
| 1080 | +.bbpc-search-keyword.left { | |
| 1081 | + text-align: left; | |
| 1082 | +} | |
| 1083 | +.bbpc-search-keyword.right { | |
| 1084 | + text-align: right; | |
| 1085 | +} | |
| 1086 | +.bbpc-search-keyword ul { | |
| 1087 | + list-style: none; | |
| 1088 | + margin: 0 2px; | |
| 1089 | + padding: 0; | |
| 1090 | + display: inline-block; | |
| 1091 | +} | |
| 1092 | +.bbpc-search-keyword ul li { | |
| 1093 | + list-style: none; | |
| 1094 | + margin: 0 2px; | |
| 1095 | + padding: 0; | |
| 1096 | + display: inline-block; | |
| 1097 | +} | |
| 1098 | +.bbpc-search-keyword ul li a { | |
| 1099 | + color: #fff; | |
| 1100 | + background: rgba(2, 1, 1, 0.2117647059); | |
| 1101 | + font-size: 14px; | |
| 1102 | + text-transform: capitalize; | |
| 1103 | + padding: 4px 12px; | |
| 1104 | + border-radius: 15px; | |
| 1105 | + font-weight: 400; | |
| 1106 | + text-decoration: none !important; | |
| 1107 | +} | |
| 1108 | + | |
| 1109 | +.bbpc_search_form_wrapper { | |
| 1110 | + position: relative; | |
| 1111 | +} | |
| 1112 | +.bbpc_search_form_wrapper .input-wrapper { | |
| 1113 | + position: relative; | |
| 1114 | +} | |
| 1115 | +.bbpc_search_form_wrapper .input-wrapper .spinner { | |
| 1116 | + position: absolute; | |
| 1117 | + right: 50px; | |
| 1118 | + top: 50%; | |
| 1119 | + transform: translateY(-50%); | |
| 1120 | + display: none; | |
| 1121 | + z-index: 999; | |
| 1122 | + gap: 4px; | |
| 1123 | + align-items: center; | |
| 1124 | +} | |
| 1125 | +.bbpc_search_form_wrapper .input-wrapper .spinner.show { | |
| 1126 | + display: flex; | |
| 1127 | +} | |
| 1128 | +.bbpc_search_form_wrapper .input-wrapper .spinner .bounce1, | |
| 1129 | +.bbpc_search_form_wrapper .input-wrapper .spinner .bounce2, | |
| 1130 | +.bbpc_search_form_wrapper .input-wrapper .spinner .bounce3 { | |
| 1131 | + width: 8px; | |
| 1132 | + height: 8px; | |
| 1133 | + background-color: #999; | |
| 1134 | + border-radius: 50%; | |
| 1135 | + display: inline-block; | |
| 1136 | + animation: bbpc-bounce 1.4s infinite ease-in-out both; | |
| 1137 | +} | |
| 1138 | +.bbpc_search_form_wrapper .input-wrapper .spinner .bounce1 { | |
| 1139 | + animation-delay: -0.32s; | |
| 1140 | +} | |
| 1141 | +.bbpc_search_form_wrapper .input-wrapper .spinner .bounce2 { | |
| 1142 | + animation-delay: -0.16s; | |
| 1143 | +} | |
| 1144 | +.bbpc_search_form_wrapper .input-wrapper input { | |
| 1145 | + width: 100%; | |
| 1146 | + padding: 0.75em; | |
| 1147 | +} | |
| 1148 | +.bbpc_search_form_wrapper .input-wrapper input::-webkit-search-cancel-button { | |
| 1149 | + -webkit-appearance: auto; | |
| 1150 | + position: absolute; | |
| 1151 | + right: 30px; | |
| 1152 | +} | |
| 1153 | +.bbpc_search_form_wrapper .input-wrapper { | |
| 1154 | + /* When button is on right, push cancel icon further left. */ | |
| 1155 | +} | |
| 1156 | +.bbpc_search_form_wrapper .input-wrapper.left input::-webkit-search-cancel-button { | |
| 1157 | + right: 60px; | |
| 1158 | +} | |
| 1159 | +.bbpc_search_form_wrapper .input-wrapper .submit-btn-left { | |
| 1160 | + position: absolute; | |
| 1161 | + left: 20px; | |
| 1162 | + top: 0; | |
| 1163 | + bottom: 0; | |
| 1164 | + display: flex; | |
| 1165 | + margin: auto; | |
| 1166 | + align-items: center; | |
| 1167 | +} | |
| 1168 | +.bbpc_search_form_wrapper .input-wrapper .submit-btn-right { | |
| 1169 | + position: absolute; | |
| 1170 | + right: 20px; | |
| 1171 | + top: 0; | |
| 1172 | + bottom: 0; | |
| 1173 | + display: flex; | |
| 1174 | + margin: auto; | |
| 1175 | + align-items: center; | |
| 1176 | +} | |
| 1177 | +.bbpc_search_form_wrapper .input-wrapper button { | |
| 1178 | + background: transparent; | |
| 1179 | + border: none; | |
| 1180 | + outline: none; | |
| 1181 | + cursor: pointer; | |
| 1182 | + padding: 0; | |
| 1183 | + margin: 0; | |
| 1184 | + color: black; | |
| 1185 | +} | |
| 1186 | +.bbpc_search_form_wrapper .input-wrapper button svg { | |
| 1187 | + width: auto; | |
| 1188 | + max-width: 100%; | |
| 1189 | + height: auto; | |
| 1190 | + max-height: 80%; | |
| 1191 | +} | |
| 1192 | +.bbpc_search_form_wrapper .search-result-item { | |
| 1193 | + padding: 10px 15px; | |
| 1194 | + display: flex; | |
| 1195 | + align-items: center; | |
| 1196 | + width: 100%; | |
| 1197 | + flex: 100%; | |
| 1198 | + transition: all 0.3s; | |
| 1199 | +} | |
| 1200 | +.bbpc_search_form_wrapper .search-result-item a { | |
| 1201 | + color: var(--p_color); | |
| 1202 | +} | |
| 1203 | +.bbpc_search_form_wrapper .search-result-item:hover { | |
| 1204 | + background: rgba(143, 187, 237, 0.1); | |
| 1205 | +} | |
| 1206 | +.bbpc_search_form_wrapper { | |
| 1207 | + /* Search keyword highlight styling. */ | |
| 1208 | +} | |
| 1209 | +.bbpc_search_form_wrapper .frmx-search-highlight { | |
| 1210 | + background-color: #fff3cd; | |
| 1211 | + color: inherit; | |
| 1212 | + padding: 1px 3px; | |
| 1213 | + border-radius: 3px; | |
| 1214 | + font-weight: 600; | |
| 1215 | +} | |
| 1216 | + | |
| 1217 | +.searchbar-tabs .tab-item { | |
| 1218 | + font-size: 14px; | |
| 1219 | + font-weight: 500; | |
| 1220 | + padding: 11px 8px; | |
| 1221 | + margin-right: 20px; | |
| 1222 | + border: none; | |
| 1223 | + background: 0 0; | |
| 1224 | + color: var(--black_400); | |
| 1225 | + text-transform: capitalize; | |
| 1226 | + cursor: pointer; | |
| 1227 | +} | |
| 1228 | +.searchbar-tabs .tab-item.active { | |
| 1229 | + color: var(--bbpc_brand_color); | |
| 1230 | + border-bottom: 3px solid var(--bbpc_brand_color); | |
| 1231 | +} | |
| 1232 | +.searchbar-tabs .tab-item:hover { | |
| 1233 | + text-decoration: none; | |
| 1234 | + outline: none; | |
| 1235 | +} | |
| 1236 | +.searchbar-tabs .tab-item:focus { | |
| 1237 | + text-decoration: none; | |
| 1238 | + outline: none; | |
| 1239 | +} | |
| 1240 | + | |
| 1241 | +.forum-card .forum-card-thumbnail-area { | |
| 1242 | + padding: 0 !important; | |
| 1243 | +} | |
| 1244 | + | |
| 1245 | +body.body_dark input#searchInput.input_focused { | |
| 1246 | + background: #fff; | |
| 1247 | +} | |
| 1248 | +body.body_dark .not-found-text, body.body_dark .bbpc-not-found-text { | |
| 1249 | + color: black; | |
| 1250 | +} | |
| 1251 | + | |
| 1252 | +/** === Focus Search Form === **/ | |
| 1253 | +body.bbpc-search-overlay { | |
| 1254 | + opacity: 1; | |
| 1255 | + visibility: visible; | |
| 1256 | +} | |
| 1257 | + | |
| 1258 | +body:not(.bbpc-search-overlay) #bbpc-search-result.ajax-search { | |
| 1259 | + display: none; | |
| 1260 | +} | |
| 1261 | + | |
| 1262 | +.bbpc-search-overlay.active { | |
| 1263 | + display: none; | |
| 1264 | + position: fixed; | |
| 1265 | + top: 0; | |
| 1266 | + left: 0; | |
| 1267 | + width: 100%; | |
| 1268 | + height: 100%; | |
| 1269 | + background: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */ | |
| 1270 | + justify-content: center; | |
| 1271 | + align-items: center; | |
| 1272 | + z-index: 99; | |
| 1273 | + transition: 0.3s all; | |
| 1274 | +} | |
| 1275 | + | |
| 1276 | +/* Bounce animation for search spinner. */ | |
| 1277 | +@keyframes bbpc-bounce { | |
| 1278 | + 0%, 80%, 100% { | |
| 1279 | + transform: scale(0); | |
| 1280 | + } | |
| 1281 | + 40% { | |
| 1282 | + transform: scale(1); | |
| 1283 | + } | |
| 1284 | +} | |
| 1285 | +.forum-with-topics { | |
| 1286 | + border-radius: 30px; | |
| 1287 | +} | |
| 1288 | +.forum-with-topics .thumb-area .forum-thumbnail { | |
| 1289 | + border-radius: 8px 8px 0 0; | |
| 1290 | + width: 100%; | |
| 1291 | +} | |
| 1292 | +.forum-with-topics .thumb-area .forum-thumbnail img { | |
| 1293 | + width: 100%; | |
| 1294 | + z-index: -1; | |
| 1295 | +} | |
| 1296 | +.forum-with-topics .topic-table .topic-heading { | |
| 1297 | + display: flex; | |
| 1298 | + flex-wrap: wrap; | |
| 1299 | + background: var(--bs-white); | |
| 1300 | + box-shadow: 0 20px 60px -5px rgba(51, 77, 114, 0.12); | |
| 1301 | + padding: 16px 30px; | |
| 1302 | + border-radius: 0 0 8px 8px; | |
| 1303 | + border: 1px solid var(--black_50); | |
| 1304 | +} | |
| 1305 | +.forum-with-topics .topic-table .topic-heading .icon-text { | |
| 1306 | + color: var(--black_600); | |
| 1307 | + font-size: 14px; | |
| 1308 | + font-weight: 400; | |
| 1309 | + display: flex; | |
| 1310 | + align-items: center; | |
| 1311 | +} | |
| 1312 | +.forum-with-topics .topic-table .topic-heading .icon-text svg { | |
| 1313 | + margin-right: 5px; | |
| 1314 | +} | |
| 1315 | +.forum-with-topics .topic-table .topic-heading .topic { | |
| 1316 | + width: 54%; | |
| 1317 | +} | |
| 1318 | +.forum-with-topics .topic-table .topic-heading .voice { | |
| 1319 | + width: 13%; | |
| 1320 | +} | |
| 1321 | +.forum-with-topics .topic-table .topic-heading .replies { | |
| 1322 | + width: 8%; | |
| 1323 | +} | |
| 1324 | +.forum-with-topics .topic-table .topic-heading .freshness { | |
| 1325 | + width: 20%; | |
| 1326 | +} | |
| 1327 | +.forum-with-topics .topic-table .topic-contents { | |
| 1328 | + display: flex; | |
| 1329 | + background: var(--bs-white); | |
| 1330 | + box-shadow: 0 1.6px 3.5px 0 rgba(51, 77, 114, 0.1490196078), 0 0.5px 1px 0 rgba(51, 77, 114, 0.1019607843); | |
| 1331 | + margin: 10px 0; | |
| 1332 | + border-radius: 8px; | |
| 1333 | + padding: 16px 30px; | |
| 1334 | + border: 1px solid var(--black_50); | |
| 1335 | + align-items: center; | |
| 1336 | +} | |
| 1337 | +.forum-with-topics .topic-table .topic-contents .title { | |
| 1338 | + width: 50%; | |
| 1339 | +} | |
| 1340 | +.forum-with-topics .topic-table .topic-contents .title:hover a { | |
| 1341 | + text-decoration: none; | |
| 1342 | +} | |
| 1343 | +.forum-with-topics .topic-table .topic-contents .title p { | |
| 1344 | + margin-top: 0; | |
| 1345 | + margin-bottom: 0; | |
| 1346 | + font-size: 15px; | |
| 1347 | +} | |
| 1348 | +.forum-with-topics .topic-table .topic-contents .title h3 { | |
| 1349 | + font-size: 16px; | |
| 1350 | + margin-bottom: 5px; | |
| 1351 | + margin-top: 0; | |
| 1352 | + line-height: 20px; | |
| 1353 | +} | |
| 1354 | +.forum-with-topics .topic-table .topic-contents .title h3:hover { | |
| 1355 | + color: var(--bbpc_brand_color); | |
| 1356 | +} | |
| 1357 | +.forum-with-topics .topic-table .topic-contents .voice { | |
| 1358 | + width: 12%; | |
| 1359 | +} | |
| 1360 | +.forum-with-topics .topic-table .topic-contents .topics { | |
| 1361 | + width: 14%; | |
| 1362 | +} | |
| 1363 | +.forum-with-topics .topic-table .topic-contents .voice, | |
| 1364 | +.forum-with-topics .topic-table .topic-contents .topics { | |
| 1365 | + text-align: center; | |
| 1366 | +} | |
| 1367 | +.forum-with-topics .topic-table .topic-contents .user { | |
| 1368 | + width: 25%; | |
| 1369 | + margin-top: 2px; | |
| 1370 | +} | |
| 1371 | +.forum-with-topics .topic-table .topic-contents .user .user-data { | |
| 1372 | + display: flex; | |
| 1373 | +} | |
| 1374 | +.forum-with-topics .topic-table .topic-contents .user .user-img { | |
| 1375 | + margin-right: 10px; | |
| 1376 | +} | |
| 1377 | +.forum-with-topics .topic-table .topic-contents .user .user-img img { | |
| 1378 | + border-radius: 50%; | |
| 1379 | +} | |
| 1380 | +.forum-with-topics .topic-table .topic-contents .user .user-info span.bbp-author-name { | |
| 1381 | + font-size: 14px; | |
| 1382 | + font-weight: 400; | |
| 1383 | + color: var(--black_800); | |
| 1384 | + letter-spacing: normal; | |
| 1385 | + margin-bottom: 8px; | |
| 1386 | + display: inline-block; | |
| 1387 | +} | |
| 1388 | +.forum-with-topics .topic-table .topic-contents .user .user-info .date { | |
| 1389 | + font-size: 13px; | |
| 1390 | + margin: 0; | |
| 1391 | + line-height: 1.5; | |
| 1392 | +} | |
| 1393 | +.forum-with-topics .topic-table .topic-contents .user .user-info .date a { | |
| 1394 | + color: var(--black_400); | |
| 1395 | +} | |
| 1396 | +.forum-with-topics .topic-table .topic-contents .user .user-info .date a:hover { | |
| 1397 | + color: var(--bbpc_brand_color); | |
| 1398 | + text-decoration: none; | |
| 1399 | +} | |
| 1400 | +.forum-with-topics .topic-table .topic-contents .user .user-info h3 { | |
| 1401 | + line-height: 0.5; | |
| 1402 | + margin: 0; | |
| 1403 | +} | |
| 1404 | +.forum-with-topics .topic-table .topic-contents h3 a { | |
| 1405 | + color: #171D24 !important; | |
| 1406 | + font-size: 16px; | |
| 1407 | +} | |
| 1408 | +.forum-with-topics .topic-table .topic-contents h3 a:hover { | |
| 1409 | + text-decoration: none; | |
| 1410 | + color: var(--bbpc_brand_color) !important; | |
| 1411 | +} | |
| 1412 | +.forum-with-topics .topic-table .topic-contents h3 a:hover span { | |
| 1413 | + color: var(--bbpc_brand_color) !important; | |
| 1414 | +} | |
| 1415 | + | |
| 1416 | +.forum-info { | |
| 1417 | + padding: 50px 30px; | |
| 1418 | +} | |
| 1419 | +.forum-info .title-area { | |
| 1420 | + align-items: center; | |
| 1421 | +} | |
| 1422 | +@media all and (max-width: 560px) { | |
| 1423 | + .forum-info .title-area { | |
| 1424 | + margin-top: 10px; | |
| 1425 | + } | |
| 1426 | +} | |
| 1427 | +.forum-info .title-area .title, | |
| 1428 | +.forum-info .title-area .subtitle { | |
| 1429 | + color: #fff; | |
| 1430 | +} | |
| 1431 | +.forum-info .title-area .title { | |
| 1432 | + font-size: 28px; | |
| 1433 | + text-transform: capitalize; | |
| 1434 | + margin: 0; | |
| 1435 | + letter-spacing: normal; | |
| 1436 | +} | |
| 1437 | +@media all and (max-width: 560px) { | |
| 1438 | + .forum-info .title-area .title { | |
| 1439 | + margin-bottom: 4px; | |
| 1440 | + } | |
| 1441 | +} | |
| 1442 | +.forum-info .title-area .subtitle { | |
| 1443 | + font-style: italic; | |
| 1444 | +} | |
| 1445 | + | |
| 1446 | +.forum-meta { | |
| 1447 | + display: flex; | |
| 1448 | + position: absolute; | |
| 1449 | + list-style-type: none; | |
| 1450 | + top: 20px; | |
| 1451 | + right: 20px; | |
| 1452 | + margin: 0; | |
| 1453 | +} | |
| 1454 | +.forum-meta li { | |
| 1455 | + display: flex; | |
| 1456 | + margin-right: 10px; | |
| 1457 | + line-height: 1 !important; | |
| 1458 | + border-radius: 3px; | |
| 1459 | + margin-left: 0; | |
| 1460 | +} | |
| 1461 | +.forum-meta li.button { | |
| 1462 | + padding: 0; | |
| 1463 | +} | |
| 1464 | +.forum-meta li.button:hover { | |
| 1465 | + text-decoration: none; | |
| 1466 | +} | |
| 1467 | +.forum-meta li:hover a { | |
| 1468 | + text-decoration: none; | |
| 1469 | +} | |
| 1470 | +.forum-meta li:last-child { | |
| 1471 | + margin-right: 0; | |
| 1472 | +} | |
| 1473 | +.forum-meta .topics, | |
| 1474 | +.forum-meta .replies { | |
| 1475 | + color: #fff; | |
| 1476 | + display: inline-flex; | |
| 1477 | + align-items: center; | |
| 1478 | + background: rgba(255, 255, 255, 0.15); | |
| 1479 | + padding: 8px; | |
| 1480 | + font-size: 14px !important; | |
| 1481 | + margin-top: 0; | |
| 1482 | +} | |
| 1483 | +.forum-meta .topics:hover, | |
| 1484 | +.forum-meta .replies:hover { | |
| 1485 | + background: rgba(255, 255, 255, 0.3); | |
| 1486 | +} | |
| 1487 | +.forum-meta .topics svg, | |
| 1488 | +.forum-meta .replies svg { | |
| 1489 | + margin-right: 5px; | |
| 1490 | +} | |
| 1491 | +.forum-meta .button a { | |
| 1492 | + color: #ffffff; | |
| 1493 | + background: var(--bbpc_brand_color); | |
| 1494 | + padding: 8px 14px; | |
| 1495 | + font-size: 14px !important; | |
| 1496 | + border-radius: 3px; | |
| 1497 | +} | |
| 1498 | +.forum-meta .button a:hover { | |
| 1499 | + background: #085d4c; | |
| 1500 | +} | |
| 1501 | + | |
| 1502 | +.forum-card { | |
| 1503 | + background: var(--bs-white); | |
| 1504 | + border-radius: 8px 8px 8px 8px; | |
| 1505 | + border: 1px solid var(--black_50); | |
| 1506 | + overflow: hidden; | |
| 1507 | +} | |
| 1508 | +.forum-card .card-body { | |
| 1509 | + padding: 25px; | |
| 1510 | +} | |
| 1511 | +.forum-card .card-body p { | |
| 1512 | + margin-bottom: 0; | |
| 1513 | +} | |
| 1514 | +.forum-card .card-title h3 { | |
| 1515 | + font-size: 18px; | |
| 1516 | + margin-bottom: 5px; | |
| 1517 | + margin-top: unset; | |
| 1518 | +} | |
| 1519 | +.forum-card .card-title h3:hover a { | |
| 1520 | + color: #0b589d; | |
| 1521 | +} | |
| 1522 | +.forum-card .card-title a { | |
| 1523 | + text-decoration: none; | |
| 1524 | +} | |
| 1525 | +.forum-card .forum-card-thumbnail-area { | |
| 1526 | + position: relative; | |
| 1527 | + border-radius: 30px 30px 0 0; | |
| 1528 | + padding: 10px 25px; | |
| 1529 | +} | |
| 1530 | +.forum-card .forum-card-thumbnail-area img { | |
| 1531 | + width: auto; | |
| 1532 | +} | |
| 1533 | +.forum-card .forum-meta { | |
| 1534 | + display: flex; | |
| 1535 | + position: absolute; | |
| 1536 | + bottom: 0; | |
| 1537 | + right: 20px; | |
| 1538 | + top: auto; | |
| 1539 | + margin-bottom: 20px; | |
| 1540 | +} | |
| 1541 | +.forum-card .forum-meta .topics, .forum-card .forum-meta .replies { | |
| 1542 | + background: rgba(23, 29, 36, 0.7); | |
| 1543 | +} | |
| 1544 | +.forum-card .forum-meta .topics:hover, .forum-card .forum-meta .replies:hover { | |
| 1545 | + background: rgba(23, 29, 36, 0.8); | |
| 1546 | +} | |
| 1547 | + | |
| 1548 | +@media all and (max-width: 560px) { | |
| 1549 | + .topic-contents .voice, | |
| 1550 | + .topic-contents .topics, | |
| 1551 | + .topic-contents .user { | |
| 1552 | + display: none; | |
| 1553 | + } | |
| 1554 | + .topic-table .topic-heading .voice, | |
| 1555 | + .topic-table .topic-heading .replies, | |
| 1556 | + .topic-table .topic-heading .freshness { | |
| 1557 | + display: none !important; | |
| 1558 | + } | |
| 1559 | + .topic-table .topic-heading .topic, | |
| 1560 | + .topic-table .topic-contents .title { | |
| 1561 | + width: 100% !important; | |
| 1562 | + } | |
| 1563 | +} | |
| 1564 | +.home-forum-counter .elementor-element-populated { | |
| 1565 | + background-color: var(--bs-white); | |
| 1566 | +} | |
| 1567 | +.home-forum-counter .elementor-element-populated .elementor-counter-number { | |
| 1568 | + color: var(--black_900); | |
| 1569 | +} | |
| 1570 | + | |
| 1571 | +.home-forum-posts .elementor-post__card { | |
| 1572 | + background-color: var(--bs-white) !important; | |
| 1573 | +} | |
| 1574 | +.home-forum-posts .elementor-post__card .elementor-post__title a { | |
| 1575 | + color: var(--black_900); | |
| 1576 | +} | |
| 1577 | + | |
| 1578 | +.card { | |
| 1579 | + position: relative; | |
| 1580 | + display: flex; | |
| 1581 | + flex-direction: column; | |
| 1582 | +} | |
| 1583 | + | |
| 1584 | +body.body_dark .forum-with-topics .topic-table .topic-contents h3 a { | |
| 1585 | + color: #fff !important; | |
| 1586 | +} | |
| 1587 | +body.body_dark .forum-with-topics .topic-table .topic-contents h3 a:hover { | |
| 1588 | + color: var(--bbpc_brand_color) !important; | |
| 1589 | +} | |
| 1590 | +body.body_dark .forum-with-topics .topic-table .topic-contents .title p { | |
| 1591 | + color: var(--black_400); | |
| 1592 | +} | |
| 1593 | +body.body_dark .forum-with-topics .forum-card .card-body .card-title h3 a { | |
| 1594 | + color: #fff !important; | |
| 1595 | +} | |
| 1596 | +body.body_dark .forum-with-topics .forum-card .card-body .card-title h3 a:hover { | |
| 1597 | + color: var(--bbpc_brand_color) !important; | |
| 1598 | +} | |
| 1599 | +body.body_dark .forum-with-topics .forum-card .card-body:not(.card-title) { | |
| 1600 | + color: var(--black_400); | |
| 1601 | +} | |
| 1602 | +body.body_dark .bbpc-sf-list .bbpc-sf-list-forum-title a { | |
| 1603 | + color: #fff; | |
| 1604 | +} | |
| 1605 | +body.body_dark .bbpc-sf-list .bbpc-sf-list-forum-desc { | |
| 1606 | + color: var(--black_400); | |
| 1607 | +} | |
| 1608 | +body.body_dark .bbpc-sf-list .bbpc-sf-list-item { | |
| 1609 | + background: var(--black_50); | |
| 1610 | +} | |
| 1611 | +body.body_dark .bbpc-sf-list .bbpc-sf-list-item .bbpc-sf-list-title a { | |
| 1612 | + color: #fff; | |
| 1613 | +} | |
| 1614 | +body.body_dark .bbpc-sf-list .bbpc-sf-list-item .bbpc-sf-list-title a:hover { | |
| 1615 | + color: var(--bbpc_brand_color); | |
| 1616 | +} | |
| 1617 | +body.body_dark .bbpc-sf-list .bbpc-sf-list-item .bbpc-sf-list-excerpt { | |
| 1618 | + color: var(--black_400); | |
| 1619 | +} | |
| 1620 | +body.body_dark .bbpc-sf-grid .bbpc-sf-grid-topics .bbpc-sf-grid-topic { | |
| 1621 | + background: var(--black_50); | |
| 1622 | +} | |
| 1623 | +body.body_dark .bbpc-sf-grid .bbpc-sf-grid-topics .bbpc-sf-grid-topic h3 a { | |
| 1624 | + color: #fff; | |
| 1625 | +} | |
| 1626 | +body.body_dark .bbpc-sf-grid .bbpc-sf-grid-topics .bbpc-sf-grid-topic h3 a:hover { | |
| 1627 | + color: var(--bbpc_brand_color); | |
| 1628 | +} | |
| 1629 | +body.body_dark .bbpc-sf-grid .bbpc-sf-grid-topics .bbpc-sf-grid-topic p { | |
| 1630 | + color: var(--black_400); | |
| 1631 | +} | |
| 1632 | + | |
| 1633 | +.bbpc-sf-list .bbpc-sf-list-header { | |
| 1634 | + display: flex; | |
| 1635 | + align-items: center; | |
| 1636 | + justify-content: space-between; | |
| 1637 | + flex-wrap: wrap; | |
| 1638 | + margin-bottom: 12px; | |
| 1639 | + gap: 10px; | |
| 1640 | +} | |
| 1641 | +.bbpc-sf-list .bbpc-sf-list-forum-title { | |
| 1642 | + font-size: 20px; | |
| 1643 | + font-weight: 600; | |
| 1644 | + margin: 0; | |
| 1645 | + color: var(--black_900); | |
| 1646 | +} | |
| 1647 | +.bbpc-sf-list .bbpc-sf-list-forum-title a { | |
| 1648 | + color: inherit; | |
| 1649 | + text-decoration: none; | |
| 1650 | +} | |
| 1651 | +.bbpc-sf-list .bbpc-sf-list-forum-title a:hover { | |
| 1652 | + color: var(--bbpc_brand_color); | |
| 1653 | +} | |
| 1654 | +.bbpc-sf-list .bbpc-sf-list-counts { | |
| 1655 | + display: flex; | |
| 1656 | + gap: 10px; | |
| 1657 | +} | |
| 1658 | +.bbpc-sf-list .bbpc-sf-list-badge { | |
| 1659 | + font-size: 13px; | |
| 1660 | + color: var(--black_500); | |
| 1661 | + background: var(--black_50); | |
| 1662 | + padding: 4px 10px; | |
| 1663 | + border-radius: 20px; | |
| 1664 | +} | |
| 1665 | +.bbpc-sf-list .bbpc-sf-list-forum-desc { | |
| 1666 | + font-size: 14px; | |
| 1667 | + color: var(--black_600); | |
| 1668 | + margin: 0 0 16px; | |
| 1669 | + line-height: 1.6; | |
| 1670 | +} | |
| 1671 | +.bbpc-sf-list .bbpc-sf-list-item { | |
| 1672 | + background: var(--bs-white); | |
| 1673 | + border: 1px solid var(--black_50); | |
| 1674 | + padding: 16px 20px; | |
| 1675 | + margin-bottom: 10px; | |
| 1676 | + border-radius: 8px; | |
| 1677 | + transition: box-shadow 0.2s ease; | |
| 1678 | +} | |
| 1679 | +.bbpc-sf-list .bbpc-sf-list-item:hover { | |
| 1680 | + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); | |
| 1681 | +} | |
| 1682 | +.bbpc-sf-list .bbpc-sf-list-item:last-of-type { | |
| 1683 | + margin-bottom: 0; | |
| 1684 | +} | |
| 1685 | +.bbpc-sf-list .bbpc-sf-list-title { | |
| 1686 | + font-size: 15px; | |
| 1687 | + font-weight: 500; | |
| 1688 | + margin: 0 0 4px; | |
| 1689 | + line-height: 1.4; | |
| 1690 | +} | |
| 1691 | +.bbpc-sf-list .bbpc-sf-list-title a { | |
| 1692 | + color: var(--black_900); | |
| 1693 | + text-decoration: none; | |
| 1694 | +} | |
| 1695 | +.bbpc-sf-list .bbpc-sf-list-title a:hover { | |
| 1696 | + color: var(--bbpc_brand_color); | |
| 1697 | +} | |
| 1698 | +.bbpc-sf-list .bbpc-sf-list-excerpt { | |
| 1699 | + font-size: 13px; | |
| 1700 | + color: var(--black_500); | |
| 1701 | + margin: 0 0 8px; | |
| 1702 | + line-height: 1.5; | |
| 1703 | +} | |
| 1704 | +.bbpc-sf-list .bbpc-sf-list-meta { | |
| 1705 | + display: flex; | |
| 1706 | + gap: 16px; | |
| 1707 | + flex-wrap: wrap; | |
| 1708 | +} | |
| 1709 | +.bbpc-sf-list .bbpc-sf-list-meta span { | |
| 1710 | + font-size: 12px; | |
| 1711 | + color: var(--black_400); | |
| 1712 | +} | |
| 1713 | +.bbpc-sf-list .bbpc-sf-list-footer { | |
| 1714 | + margin-top: 16px; | |
| 1715 | + text-align: right; | |
| 1716 | +} | |
| 1717 | +.bbpc-sf-list .bbpc-sf-list-view-all { | |
| 1718 | + display: inline-block; | |
| 1719 | + font-size: 14px; | |
| 1720 | + font-weight: 500; | |
| 1721 | + color: var(--bbpc_brand_color); | |
| 1722 | + text-decoration: none; | |
| 1723 | +} | |
| 1724 | +.bbpc-sf-list .bbpc-sf-list-view-all:hover { | |
| 1725 | + text-decoration: underline; | |
| 1726 | +} | |
| 1727 | + | |
| 1728 | +.bbpc-sf-grid { | |
| 1729 | + display: grid; | |
| 1730 | + grid-template-columns: 1fr 1fr; | |
| 1731 | + gap: 0; | |
| 1732 | + border-radius: 8px; | |
| 1733 | + overflow: hidden; | |
| 1734 | + border: 1px solid var(--black_50); | |
| 1735 | +} | |
| 1736 | +@media all and (max-width: 768px) { | |
| 1737 | + .bbpc-sf-grid { | |
| 1738 | + grid-template-columns: 1fr; | |
| 1739 | + } | |
| 1740 | +} | |
| 1741 | +.bbpc-sf-grid .bbpc-sf-grid-info { | |
| 1742 | + display: flex; | |
| 1743 | + align-items: flex-end; | |
| 1744 | + padding: 30px; | |
| 1745 | + min-height: 250px; | |
| 1746 | + color: #fff; | |
| 1747 | +} | |
| 1748 | +.bbpc-sf-grid .bbpc-sf-grid-info-inner { | |
| 1749 | + width: 100%; | |
| 1750 | +} | |
| 1751 | +.bbpc-sf-grid .bbpc-sf-grid-title { | |
| 1752 | + font-size: 22px; | |
| 1753 | + font-weight: 600; | |
| 1754 | + margin: 0 0 8px; | |
| 1755 | +} | |
| 1756 | +.bbpc-sf-grid .bbpc-sf-grid-title a { | |
| 1757 | + color: #fff; | |
| 1758 | + text-decoration: none; | |
| 1759 | +} | |
| 1760 | +.bbpc-sf-grid .bbpc-sf-grid-title a:hover { | |
| 1761 | + opacity: 0.85; | |
| 1762 | +} | |
| 1763 | +.bbpc-sf-grid .bbpc-sf-grid-desc { | |
| 1764 | + font-size: 14px; | |
| 1765 | + line-height: 1.6; | |
| 1766 | + margin: 0 0 16px; | |
| 1767 | + opacity: 0.85; | |
| 1768 | + color: #fff; | |
| 1769 | +} | |
| 1770 | +.bbpc-sf-grid .bbpc-sf-grid-badges { | |
| 1771 | + display: flex; | |
| 1772 | + gap: 10px; | |
| 1773 | + margin-bottom: 16px; | |
| 1774 | +} | |
| 1775 | +.bbpc-sf-grid .bbpc-sf-grid-badge { | |
| 1776 | + font-size: 13px; | |
| 1777 | + color: #fff; | |
| 1778 | + background: rgba(255, 255, 255, 0.2); | |
| 1779 | + padding: 5px 12px; | |
| 1780 | + border-radius: 20px; | |
| 1781 | +} | |
| 1782 | +.bbpc-sf-grid .bbpc-sf-grid-view-all { | |
| 1783 | + display: inline-block; | |
| 1784 | + font-size: 14px; | |
| 1785 | + font-weight: 500; | |
| 1786 | + color: #fff; | |
| 1787 | + text-decoration: none; | |
| 1788 | + background: var(--bbpc_brand_color); | |
| 1789 | + padding: 8px 18px; | |
| 1790 | + border-radius: 6px; | |
| 1791 | + transition: opacity 0.2s ease; | |
| 1792 | +} | |
| 1793 | +.bbpc-sf-grid .bbpc-sf-grid-view-all:hover { | |
| 1794 | + opacity: 0.9; | |
| 1795 | + color: #fff; | |
| 1796 | + text-decoration: none; | |
| 1797 | +} | |
| 1798 | +.bbpc-sf-grid .bbpc-sf-grid-topics { | |
| 1799 | + background: var(--bs-white); | |
| 1800 | +} | |
| 1801 | +.bbpc-sf-grid .bbpc-sf-grid-topic { | |
| 1802 | + padding: 18px 24px; | |
| 1803 | + border-bottom: 1px solid var(--black_50); | |
| 1804 | + transition: background 0.2s ease; | |
| 1805 | +} | |
| 1806 | +.bbpc-sf-grid .bbpc-sf-grid-topic:last-child { | |
| 1807 | + border-bottom: none; | |
| 1808 | +} | |
| 1809 | +.bbpc-sf-grid .bbpc-sf-grid-topic:hover { | |
| 1810 | + background: var(--black_50); | |
| 1811 | +} | |
| 1812 | +.bbpc-sf-grid .bbpc-sf-grid-topic h3 { | |
| 1813 | + font-size: 15px; | |
| 1814 | + font-weight: 500; | |
| 1815 | + margin: 0 0 4px; | |
| 1816 | + line-height: 1.4; | |
| 1817 | +} | |
| 1818 | +.bbpc-sf-grid .bbpc-sf-grid-topic h3 a { | |
| 1819 | + color: var(--black_900); | |
| 1820 | + text-decoration: none; | |
| 1821 | +} | |
| 1822 | +.bbpc-sf-grid .bbpc-sf-grid-topic h3 a:hover { | |
| 1823 | + color: var(--bbpc_brand_color); | |
| 1824 | +} | |
| 1825 | +.bbpc-sf-grid .bbpc-sf-grid-topic p { | |
| 1826 | + font-size: 13px; | |
| 1827 | + color: var(--black_500); | |
| 1828 | + margin: 0 0 8px; | |
| 1829 | + line-height: 1.5; | |
| 1830 | +} | |
| 1831 | +.bbpc-sf-grid .bbpc-sf-grid-meta { | |
| 1832 | + display: flex; | |
| 1833 | + gap: 16px; | |
| 1834 | + flex-wrap: wrap; | |
| 1835 | +} | |
| 1836 | +.bbpc-sf-grid .bbpc-sf-grid-meta span { | |
| 1837 | + font-size: 12px; | |
| 1838 | + color: var(--black_400); | |
| 1839 | +} | |
| 1840 | + | |
| 1841 | +.single-forum-post-widget { | |
| 1842 | + box-shadow: 0 1.6px 3.5px 0 rgba(51, 77, 114, 0.1490196078), 0 0.5px 1px 0 rgba(51, 77, 114, 0.1019607843); | |
| 1843 | + border-radius: 10px; | |
| 1844 | + background-color: var(--bs-white); | |
| 1845 | + transition: all 0.3s ease-out; | |
| 1846 | + padding: 22px 35px 18px 30px; | |
| 1847 | + display: flex; | |
| 1848 | + align-items: center; | |
| 1849 | + justify-content: space-between; | |
| 1850 | + margin-top: 10px; | |
| 1851 | +} | |
| 1852 | +.single-forum-post-widget:first-child { | |
| 1853 | + margin-top: 0; | |
| 1854 | +} | |
| 1855 | +.single-forum-post-widget:hover { | |
| 1856 | + box-shadow: 0 20px 45px 0 rgba(51, 77, 114, 0.1490196078); | |
| 1857 | + transform: translateX(2px); | |
| 1858 | +} | |
| 1859 | +.single-forum-post-widget:hover .post-title h6 a { | |
| 1860 | + color: var(--bbpc_brand_color); | |
| 1861 | +} | |
| 1862 | +.single-forum-post-widget .post-title { | |
| 1863 | + margin-bottom: 15px; | |
| 1864 | +} | |
| 1865 | +.single-forum-post-widget .post-title h6 { | |
| 1866 | + margin-bottom: 0; | |
| 1867 | + line-height: 22px; | |
| 1868 | + font-size: 16px; | |
| 1869 | + font-weight: 500; | |
| 1870 | + text-transform: capitalize; | |
| 1871 | +} | |
| 1872 | +.single-forum-post-widget .post-title h6 a { | |
| 1873 | + color: var(--black_800); | |
| 1874 | + font-size: 18px; | |
| 1875 | +} | |
| 1876 | +.single-forum-post-widget .post-title h6 a:hover { | |
| 1877 | + text-decoration: none; | |
| 1878 | +} | |
| 1879 | +.single-forum-post-widget .post-title i { | |
| 1880 | + font-size: 15px; | |
| 1881 | + color: #2ed83f; | |
| 1882 | + vertical-align: middle; | |
| 1883 | + margin-left: 6px; | |
| 1884 | +} | |
| 1885 | +.single-forum-post-widget .post-info { | |
| 1886 | + display: flex; | |
| 1887 | + flex-wrap: wrap; | |
| 1888 | + margin-bottom: 5px; | |
| 1889 | +} | |
| 1890 | +.single-forum-post-widget .post-info > div { | |
| 1891 | + margin-right: 15px; | |
| 1892 | + display: flex; | |
| 1893 | +} | |
| 1894 | +.single-forum-post-widget .post-info > div img { | |
| 1895 | + margin-right: 5px; | |
| 1896 | + height: 15px; | |
| 1897 | + width: 15px; | |
| 1898 | +} | |
| 1899 | +.single-forum-post-widget .post-info > div { | |
| 1900 | + color: var(--black_600); | |
| 1901 | + font-size: 14px; | |
| 1902 | + font-weight: 400; | |
| 1903 | + line-height: 16px; | |
| 1904 | +} | |
| 1905 | +.single-forum-post-widget .post-info > div a { | |
| 1906 | + color: var(--black_600); | |
| 1907 | +} | |
| 1908 | +.single-forum-post-widget .post-tags { | |
| 1909 | + display: flex; | |
| 1910 | +} | |
| 1911 | +.single-forum-post-widget .post-tags .single-tag { | |
| 1912 | + padding: 3px 9.5px; | |
| 1913 | + border-radius: 3px; | |
| 1914 | + font-size: 12px; | |
| 1915 | + font-weight: 400; | |
| 1916 | + line-height: 14px; | |
| 1917 | + color: #fff; | |
| 1918 | + margin: 12px 10px 0 0; | |
| 1919 | +} | |
| 1920 | +.single-forum-post-widget .post-tags .single-tag:last-child { | |
| 1921 | + margin-right: 0; | |
| 1922 | +} | |
| 1923 | +.single-forum-post-widget .post-tags .single-tag.tag-jq { | |
| 1924 | + background-color: #f7ab40; | |
| 1925 | +} | |
| 1926 | +.single-forum-post-widget .post-tags .single-tag.tag-php { | |
| 1927 | + background-color: #7543e0; | |
| 1928 | +} | |
| 1929 | +.single-forum-post-widget .post-tags .single-tag.tag-wp { | |
| 1930 | + background-color: #6078ce; | |
| 1931 | +} | |
| 1932 | +.single-forum-post-widget .post-tags .single-tag.tag-js { | |
| 1933 | + background-color: #ff7245; | |
| 1934 | +} | |
| 1935 | +.single-forum-post-widget .post-tags .single-tag.tag-dvlp { | |
| 1936 | + background-color: #48a6ea; | |
| 1937 | +} | |
| 1938 | +.single-forum-post-widget .post-tags .single-tag.tag-ecmrc { | |
| 1939 | + background-color: #333333; | |
| 1940 | +} | |
| 1941 | +.single-forum-post-widget .post-tags .single-tag.tag-foram { | |
| 1942 | + background-color: var(--bbpc_brand_color); | |
| 1943 | +} | |
| 1944 | +.single-forum-post-widget .post-tags .single-tag.tag-hlp { | |
| 1945 | + background-color: #2c53df; | |
| 1946 | +} | |
| 1947 | +.single-forum-post-widget .post-tags .single-tag.tag-sprt { | |
| 1948 | + background-color: #0cc72a; | |
| 1949 | +} | |
| 1950 | +.single-forum-post-widget .post-reach { | |
| 1951 | + border-left: 1px solid var(--black_50); | |
| 1952 | + padding-left: 15px; | |
| 1953 | +} | |
| 1954 | +.single-forum-post-widget .post-reach > div { | |
| 1955 | + font-size: 12px; | |
| 1956 | + font-weight: 400; | |
| 1957 | + line-height: 14px; | |
| 1958 | + color: #848d95; | |
| 1959 | + margin-top: 10px; | |
| 1960 | + display: flex; | |
| 1961 | + align-items: center; | |
| 1962 | +} | |
| 1963 | +.single-forum-post-widget .post-reach > div:first-child { | |
| 1964 | + margin-top: 0; | |
| 1965 | +} | |
| 1966 | +.single-forum-post-widget .post-reach > div img { | |
| 1967 | + margin-right: 5px; | |
| 1968 | +} | |
| 1969 | + | |
| 1970 | +.community-area .nav-tabs { | |
| 1971 | + border-bottom: 1px solid var(--black_50); | |
| 1972 | +} | |
| 1973 | +.community-area .nav-tabs .nav-item:hover button { | |
| 1974 | + color: var(--bbpc_brand_color); | |
| 1975 | +} | |
| 1976 | +.community-area .nav-tabs .nav-item button { | |
| 1977 | + background-color: transparent; | |
| 1978 | + font-size: 16px; | |
| 1979 | + font-weight: 400; | |
| 1980 | + line-height: 26px; | |
| 1981 | + color: #535a60; | |
| 1982 | + padding: 10px 0; | |
| 1983 | + margin-right: 30px; | |
| 1984 | + border: none; | |
| 1985 | + border-bottom: 2px solid transparent; | |
| 1986 | + cursor: pointer; | |
| 1987 | +} | |
| 1988 | +.community-area .nav-tabs .nav-item button.active { | |
| 1989 | + border-bottom-color: var(--bbpc_brand_color); | |
| 1990 | + color: #171d24; | |
| 1991 | + font-weight: 500; | |
| 1992 | +} | |
| 1993 | +.community-area .sec-btn-blue { | |
| 1994 | + border-radius: 26px; | |
| 1995 | + border: 1px solid rgba(74, 110, 224, 0.4); | |
| 1996 | + color: #4a6ee0; | |
| 1997 | + background-color: transparent; | |
| 1998 | + font-weight: 700; | |
| 1999 | + font-size: 16px; | |
| 2000 | + padding: 10px 37px; | |
| 2001 | +} | |
| 2002 | +.community-area .sec-btn-blue:hover { | |
| 2003 | + background-color: #4a6ee0; | |
| 2004 | + color: #fff; | |
| 2005 | + box-shadow: none; | |
| 2006 | +} | |
| 2007 | + | |
| 2008 | +.community-topic-widget-box { | |
| 2009 | + box-shadow: 0 1.6px 3.5px 0 rgba(51, 77, 114, 0.1490196078), 0 0.5px 1px 0 rgba(51, 77, 114, 0.1019607843); | |
| 2010 | + border-radius: 10px; | |
| 2011 | + display: flex; | |
| 2012 | + padding: 40px; | |
| 2013 | + transition: all 0.3s ease-out; | |
| 2014 | + background-color: var(--bs-white); | |
| 2015 | +} | |
| 2016 | +.community-topic-widget-box:hover { | |
| 2017 | + box-shadow: 0 20px 45px 0 rgba(51, 77, 114, 0.1490196078); | |
| 2018 | +} | |
| 2019 | +.community-topic-widget-box img { | |
| 2020 | + margin-right: 24px; | |
| 2021 | + max-width: 48px !important; | |
| 2022 | +} | |
| 2023 | +.community-topic-widget-box h5 { | |
| 2024 | + font-size: 18px; | |
| 2025 | + font-weight: 500; | |
| 2026 | + line-height: 21px; | |
| 2027 | + color: #171d24; | |
| 2028 | + margin-bottom: 5px; | |
| 2029 | + margin-top: 0; | |
| 2030 | + text-transform: capitalize; | |
| 2031 | +} | |
| 2032 | +.community-topic-widget-box h5:hover a { | |
| 2033 | + color: var(--bbpc_brand_color); | |
| 2034 | + text-decoration: none; | |
| 2035 | +} | |
| 2036 | +.community-topic-widget-box span { | |
| 2037 | + font-size: 14px; | |
| 2038 | + font-weight: 400; | |
| 2039 | + line-height: 22px; | |
| 2040 | + color: #6a737c; | |
| 2041 | + display: inline-block; | |
| 2042 | +} | |
| 2043 | +.community-topic-widget-box span:nth-child(2) { | |
| 2044 | + padding-right: 8px; | |
| 2045 | +} | |
| 2046 | +.community-topic-widget-box span:nth-child(4) { | |
| 2047 | + padding-left: 8px; | |
| 2048 | +} | |
| 2049 | +.community-topic-widget-box span.vr-line { | |
| 2050 | + color: var(--black_75); | |
| 2051 | +} | |
| 2052 | + | |
| 2053 | +.nav { | |
| 2054 | + display: flex; | |
| 2055 | + flex-wrap: wrap; | |
| 2056 | + padding-left: 0; | |
| 2057 | + margin-bottom: 0; | |
| 2058 | + list-style: none; | |
| 2059 | + margin-left: 0; | |
| 2060 | +} | |
| 2061 | + | |
| 2062 | +.bbpc-community-topic-widget-main-wrapper { | |
| 2063 | + --bs-gutter-x: 1.5rem; | |
| 2064 | + --bs-gutter-y: 0; | |
| 2065 | + display: grid; | |
| 2066 | + grid-template-columns: repeat(3, 1fr); | |
| 2067 | + grid-gap: 20px; | |
| 2068 | +} | |
| 2069 | +.bbpc-community-topic-widget-main-wrapper .bbpc-community-topic-widget-wrapper { | |
| 2070 | + display: contents; | |
| 2071 | +} | |
| 2072 | +@media (max-width: 1024px) { | |
| 2073 | + .bbpc-community-topic-widget-main-wrapper { | |
| 2074 | + grid-template-columns: repeat(2, 1fr); | |
| 2075 | + } | |
| 2076 | +} | |
| 2077 | +@media (max-width: 768px) { | |
| 2078 | + .bbpc-community-topic-widget-main-wrapper { | |
| 2079 | + grid-template-columns: repeat(1, 1fr); | |
| 2080 | + } | |
| 2081 | +} | |
| 2082 | + | |
| 2083 | +.bbpc-show-more-btn-wrapper { | |
| 2084 | + width: 100%; | |
| 2085 | + text-align: center; | |
| 2086 | +} | |
| 2087 | +.bbpc-show-more-btn-wrapper .show-more-btn { | |
| 2088 | + display: inline-block; | |
| 2089 | + box-shadow: 0 1.6px 3.5px 0 rgba(51, 77, 114, 0.1490196078), 0 0.5px 1px 0 rgba(51, 77, 114, 0.1019607843); | |
| 2090 | + transition: all 0.3s ease-out; | |
| 2091 | + font-size: 18px; | |
| 2092 | + font-weight: 400; | |
| 2093 | + color: #4a6ee0; | |
| 2094 | + height: 50px; | |
| 2095 | + border-radius: 5px; | |
| 2096 | + line-height: 48px; | |
| 2097 | + padding: 0 40px; | |
| 2098 | + text-align: center; | |
| 2099 | + background-color: var(--bs-white); | |
| 2100 | + margin-top: 50px; | |
| 2101 | +} | |
| 2102 | +.bbpc-show-more-btn-wrapper .show-more-btn:hover { | |
| 2103 | + box-shadow: 0 10px 30px 0 rgba(51, 77, 114, 0.1215686275); | |
| 2104 | + color: #4a6ee0; | |
| 2105 | +} | |
| 2106 | +.bbpc-show-more-btn-wrapper .show-more-btn i { | |
| 2107 | + color: #4a6ee0; | |
| 2108 | + vertical-align: middle; | |
| 2109 | +} | |
| 2110 | +.bbpc-show-more-btn-wrapper .show-more-btn.show-more-round { | |
| 2111 | + height: 48px; | |
| 2112 | + border-radius: 24px; | |
| 2113 | + line-height: 47px; | |
| 2114 | +} | |
| 2115 | +.bbpc-show-more-btn-wrapper .show-more-btn:hover { | |
| 2116 | + text-decoration: none; | |
| 2117 | +} | |
| 2118 | + | |
| 2119 | +/*------- Forum Tab widget tags --------*/ | |
| 2120 | +.single-forum-post-widget .post-tags a { | |
| 2121 | + font-weight: 400; | |
| 2122 | + line-height: 14px; | |
| 2123 | + font-size: 12px; | |
| 2124 | + padding: 3px 10px; | |
| 2125 | + background: #6078ce; | |
| 2126 | + margin: 12px 10px 0 0; | |
| 2127 | + border-radius: 3px; | |
| 2128 | + color: #fff; | |
| 2129 | + text-decoration: none; | |
| 2130 | +} | |
| 2131 | +.single-forum-post-widget .post-tags a:hover { | |
| 2132 | + background: #4766d5; | |
| 2133 | +} | |
| 2134 | + | |
| 2135 | +.tab-content { | |
| 2136 | + padding-top: 40px; | |
| 2137 | +} | |
| 2138 | +.tab-content .tab { | |
| 2139 | + display: none; | |
| 2140 | +} | |
| 2141 | +.tab-content.active { | |
| 2142 | + display: block; | |
| 2143 | +} | |
| 2144 | + | |
| 2145 | +.community-area .tab-content:not(.active) { | |
| 2146 | + display: none; | |
| 2147 | +} | |
| 2148 | + | |
| 2149 | +.alert-warning { | |
| 2150 | + color: #664d03; | |
| 2151 | + background-color: #fff3cd; | |
| 2152 | + border-color: #ffecb5; | |
| 2153 | +} | |
| 2154 | + | |
| 2155 | +.alert { | |
| 2156 | + position: relative; | |
| 2157 | + padding: 1rem 1rem; | |
| 2158 | + margin-bottom: 1rem; | |
| 2159 | + border: 1px solid transparent; | |
| 2160 | + border-radius: 0.25rem; | |
| 2161 | +} | |
| 2162 | + | |
| 2163 | +.dbl-arrow-upper { | |
| 2164 | + display: inline-block; | |
| 2165 | +} | |
| 2166 | +.dbl-arrow-upper .arrow-cont { | |
| 2167 | + cursor: pointer; | |
| 2168 | + position: relative; | |
| 2169 | + display: inline-block; | |
| 2170 | + height: 24px; | |
| 2171 | + width: 20px; | |
| 2172 | + margin-right: 3px; | |
| 2173 | +} | |
| 2174 | +.dbl-arrow-upper .arrow-cont svg { | |
| 2175 | + position: absolute; | |
| 2176 | + bottom: 0; | |
| 2177 | + margin-left: 0; | |
| 2178 | + background-size: contain; | |
| 2179 | + top: 8px; | |
| 2180 | + left: 0; | |
| 2181 | +} | |
| 2182 | +.dbl-arrow-upper .arrow-cont .second { | |
| 2183 | + margin-top: 5px; | |
| 2184 | +} | |
| 2185 | +.dbl-arrow-upper:hover svg { | |
| 2186 | + animation-name: bounceAlphaUp; | |
| 2187 | + animation-duration: 1.4s; | |
| 2188 | + animation-iteration-count: infinite; | |
| 2189 | + animation-timing-function: linear; | |
| 2190 | +} | |
| 2191 | +.dbl-arrow-upper:hover svg.first { | |
| 2192 | + animation-name: bounceAlphaUp; | |
| 2193 | + animation-duration: 1.4s; | |
| 2194 | + animation-delay: 0.2s; | |
| 2195 | + animation-iteration-count: infinite; | |
| 2196 | + animation-timing-function: linear; | |
| 2197 | +} | |
| 2198 | + | |
| 2199 | +@keyframes bounceAlphaUp { | |
| 2200 | + 0% { | |
| 2201 | + opacity: 1; | |
| 2202 | + transform: translateY(0) scale(1); | |
| 2203 | + } | |
| 2204 | + 25% { | |
| 2205 | + opacity: 0; | |
| 2206 | + transform: translateY(10px) scale(0.9); | |
| 2207 | + } | |
| 2208 | + 26% { | |
| 2209 | + opacity: 0; | |
| 2210 | + transform: translateY(-10px) scale(0.9); | |
| 2211 | + } | |
| 2212 | + 55% { | |
| 2213 | + opacity: 1; | |
| 2214 | + transform: translateY(0) scale(1); | |
| 2215 | + } | |
| 2216 | +} | |
| 2217 | +/*============== doc_features_area css ===========*/ | |
| 2218 | +.doc_features_area { | |
| 2219 | + padding-bottom: 40px; | |
| 2220 | + position: relative; | |
| 2221 | + z-index: 1; | |
| 2222 | + background: #fbfbfc; | |
| 2223 | +} | |
| 2224 | +.doc_features_area .doc_features_shap { | |
| 2225 | + position: absolute; | |
| 2226 | + bottom: 0; | |
| 2227 | + left: 0; | |
| 2228 | + z-index: -1; | |
| 2229 | + background-size: cover; | |
| 2230 | +} | |
| 2231 | + | |
| 2232 | +.doc_features_inner { | |
| 2233 | + overflow: hidden; | |
| 2234 | + box-shadow: 0 30px 60px 0 rgba(2, 2, 48, 0.08); | |
| 2235 | + border-radius: 10px; | |
| 2236 | + background: #fff; | |
| 2237 | + top: -60px; | |
| 2238 | + position: relative; | |
| 2239 | +} | |
| 2240 | +.doc_features_inner .see_more_item, | |
| 2241 | +.doc_features_inner .forumax-collapse-wrap { | |
| 2242 | + display: none; | |
| 2243 | + flex-wrap: wrap; | |
| 2244 | + width: 100%; | |
| 2245 | +} | |
| 2246 | +.doc_features_inner .media-body a { | |
| 2247 | + text-decoration: none; | |
| 2248 | +} | |
| 2249 | +.doc_features_inner .media-body a:hover { | |
| 2250 | + text-decoration: underline; | |
| 2251 | +} | |
| 2252 | +.doc_features_inner a.see_btn { | |
| 2253 | + text-decoration: none; | |
| 2254 | +} | |
| 2255 | +.doc_features_inner a.see_btn:hover { | |
| 2256 | + text-decoration: underline; | |
| 2257 | + color: var(--bbpc_brand_color); | |
| 2258 | +} | |
| 2259 | +.doc_features_inner a.see_btn:focus { | |
| 2260 | + outline: none; | |
| 2261 | +} | |
| 2262 | + | |
| 2263 | +.see_btn { | |
| 2264 | + font-size: 14px; | |
| 2265 | + line-height: 20px; | |
| 2266 | + color: var(--bbpc_brand_color); | |
| 2267 | + display: inline-block; | |
| 2268 | + margin: 16px 50px 12px; | |
| 2269 | + width: 100%; | |
| 2270 | +} | |
| 2271 | +.see_btn:hover i { | |
| 2272 | + background-color: var(--bbpc_brand_color); | |
| 2273 | + color: #fff; | |
| 2274 | +} | |
| 2275 | +.see_btn i { | |
| 2276 | + font-size: 20px; | |
| 2277 | + vertical-align: middle; | |
| 2278 | + margin-right: 5px; | |
| 2279 | + margin-top: -5px; | |
| 2280 | + display: inline-block; | |
| 2281 | + border-radius: 50%; | |
| 2282 | + border: 1px solid var(--bbpc_brand_color); | |
| 2283 | + transition: background-color 0.3s; | |
| 2284 | +} | |
| 2285 | +.see_btn .less { | |
| 2286 | + display: none; | |
| 2287 | +} | |
| 2288 | +.see_btn.active .less { | |
| 2289 | + display: inline; | |
| 2290 | +} | |
| 2291 | +.see_btn.active .more { | |
| 2292 | + display: none; | |
| 2293 | +} | |
| 2294 | +.see_btn.active i { | |
| 2295 | + transform: rotate(180deg); | |
| 2296 | +} | |
| 2297 | + | |
| 2298 | +.doc_features_item { | |
| 2299 | + width: 33.3333333333%; | |
| 2300 | + float: left; | |
| 2301 | + padding: 35px 30px; | |
| 2302 | + border-bottom: 1px solid var(--black_100); | |
| 2303 | + border-left: 1px solid var(--black_100); | |
| 2304 | +} | |
| 2305 | +.doc_features_item img { | |
| 2306 | + margin-right: 15px; | |
| 2307 | +} | |
| 2308 | +.doc_features_item h4 { | |
| 2309 | + font-size: 16px; | |
| 2310 | + line-height: 26px; | |
| 2311 | + font-family: var(--rob); | |
| 2312 | + font-weight: 700; | |
| 2313 | + margin-bottom: 2px; | |
| 2314 | +} | |
| 2315 | +.doc_features_item h4:hover { | |
| 2316 | + color: var(--bbpc_brand_color); | |
| 2317 | +} | |
| 2318 | +.doc_features_item p { | |
| 2319 | + margin-bottom: 0; | |
| 2320 | + font-size: 14px; | |
| 2321 | +} | |
| 2322 | +.doc_features_item:nth-child(1), .doc_features_item:nth-child(4), .doc_features_item:nth-child(7), .doc_features_item:nth-child(10) { | |
| 2323 | + border-left: 0; | |
| 2324 | +} | |
| 2325 | + | |
| 2326 | +.doc_features_item img { | |
| 2327 | + max-width: 50px !important; | |
| 2328 | + max-height: 50px !important; | |
| 2329 | +} | |
| 2330 | + | |
| 2331 | +/*============== doc_features_area css ===========*/ | |
| 2332 | +/*============= doc_community_area css ================*/ | |
| 2333 | +.doc_community_area { | |
| 2334 | + padding: 200px 0 75px; | |
| 2335 | + position: relative; | |
| 2336 | +} | |
| 2337 | +.doc_community_area .shap_one, | |
| 2338 | +.doc_community_area .shap_two { | |
| 2339 | + position: absolute; | |
| 2340 | + z-index: -1; | |
| 2341 | +} | |
| 2342 | +.doc_community_area .shap_one { | |
| 2343 | + width: 1300px; | |
| 2344 | + right: 0; | |
| 2345 | + top: 100px; | |
| 2346 | +} | |
| 2347 | +.doc_community_area .shap_two { | |
| 2348 | + top: 0; | |
| 2349 | +} | |
| 2350 | +.doc_community_area .doc_title { | |
| 2351 | + margin-bottom: 64px; | |
| 2352 | +} | |
| 2353 | + | |
| 2354 | +.doc_community_info .question_text { | |
| 2355 | + color: #a7acb7; | |
| 2356 | + font-size: 14px; | |
| 2357 | + font-weight: 400; | |
| 2358 | + line-height: 22px; | |
| 2359 | + margin-top: 40px; | |
| 2360 | +} | |
| 2361 | +.doc_community_info .question_text:hover { | |
| 2362 | + color: var(--brand_color); | |
| 2363 | +} | |
| 2364 | +.doc_community_info .doc_entry_content a { | |
| 2365 | + text-decoration: none; | |
| 2366 | +} | |
| 2367 | +.doc_community_info .doc_entry_content a:hover { | |
| 2368 | + text-decoration: underline; | |
| 2369 | +} | |
| 2370 | + | |
| 2371 | +.doc_community_item { | |
| 2372 | + display: flex; | |
| 2373 | + align-items: center; | |
| 2374 | + border-radius: 10px; | |
| 2375 | + background: #fff; | |
| 2376 | + box-shadow: 0 20px 30px 0 rgba(2, 2, 48, 0.06); | |
| 2377 | + margin-bottom: 20px; | |
| 2378 | + padding: 38px 70px; | |
| 2379 | + transition: all 0.2s linear; | |
| 2380 | + cursor: pointer; | |
| 2381 | +} | |
| 2382 | +.doc_community_item .doc_community_icon { | |
| 2383 | + width: 100px; | |
| 2384 | + height: 100px; | |
| 2385 | + line-height: 100px; | |
| 2386 | + border-radius: 50%; | |
| 2387 | + text-align: center; | |
| 2388 | + font-size: 36px; | |
| 2389 | + background: rgba(76, 76, 241, 0.06); | |
| 2390 | + color: var(--brand_color); | |
| 2391 | + margin-right: 50px; | |
| 2392 | +} | |
| 2393 | +.doc_community_item h4 { | |
| 2394 | + font-size: 20px; | |
| 2395 | + margin-bottom: 5px; | |
| 2396 | + transition: color 0.2s linear; | |
| 2397 | +} | |
| 2398 | +.doc_community_item h4:hover { | |
| 2399 | + color: var(--brand_color); | |
| 2400 | +} | |
| 2401 | +.doc_community_item p { | |
| 2402 | + font-size: 14px; | |
| 2403 | + color: #6b707f; | |
| 2404 | +} | |
| 2405 | +.doc_community_item .doc_entry_info { | |
| 2406 | + display: flex; | |
| 2407 | + flex-wrap: wrap; | |
| 2408 | + padding-top: 5px; | |
| 2409 | +} | |
| 2410 | +.doc_community_item .doc_entry_info .author_avatar { | |
| 2411 | + display: flex; | |
| 2412 | + margin-bottom: 0; | |
| 2413 | + margin-right: 15px; | |
| 2414 | +} | |
| 2415 | +.doc_community_item .doc_entry_info .author_avatar li { | |
| 2416 | + line-height: 34px; | |
| 2417 | + border-radius: 50%; | |
| 2418 | + font-size: 14px; | |
| 2419 | + font-weight: 500; | |
| 2420 | + color: var(--black_800); | |
| 2421 | + text-align: center; | |
| 2422 | + z-index: 2; | |
| 2423 | + position: relative; | |
| 2424 | + border: 2px solid var(--bs-white); | |
| 2425 | + list-style: none !important; | |
| 2426 | +} | |
| 2427 | +.doc_community_item .doc_entry_info .author_avatar li img { | |
| 2428 | + max-width: 30px; | |
| 2429 | + border-radius: 50%; | |
| 2430 | +} | |
| 2431 | +.doc_community_item .doc_entry_info .author_avatar li + li { | |
| 2432 | + margin-left: -10px; | |
| 2433 | +} | |
| 2434 | +.doc_community_item .doc_entry_info .author_avatar li.avatar_plus { | |
| 2435 | + border-color: #d7d8db; | |
| 2436 | + width: 32px; | |
| 2437 | + height: 32px; | |
| 2438 | + align-self: end; | |
| 2439 | + line-height: 28px; | |
| 2440 | + font-size: 12px; | |
| 2441 | + padding-left: 2px; | |
| 2442 | + z-index: 0; | |
| 2443 | + margin-left: -8px; | |
| 2444 | +} | |
| 2445 | +.doc_community_item .doc_entry_info .text { | |
| 2446 | + font-size: 14px; | |
| 2447 | + line-height: 1.3; | |
| 2448 | + color: #90939b; | |
| 2449 | +} | |
| 2450 | +.doc_community_item:hover { | |
| 2451 | + box-shadow: 0 10px 30px 0 rgba(2, 2, 48, 0.02); | |
| 2452 | +} | |
| 2453 | +.doc_community_item:nth-child(2) .doc_community_icon { | |
| 2454 | + background: #fef9ee; | |
| 2455 | + color: #f7b126; | |
| 2456 | +} | |
| 2457 | +.doc_community_item:nth-child(3) .doc_community_icon { | |
| 2458 | + background: #f1fbf8; | |
| 2459 | + color: #0fbc8b; | |
| 2460 | +} | |
| 2461 | + | |
| 2462 | +/*============= doc_community_area css ================*/ | |
| 2463 | + | |
| 2464 | +/*# sourceMappingURL=el-widgets.css.map */ | |