| 1 |
/*!***********************************************************************************************************************************************************************************************************************************************!*\ |
| 2 |
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/forums/editor.scss ***! |
| 3 |
\***********************************************************************************************************************************************************************************************************************************************/ |
| 4 |
:root { |
| 5 |
--rob: "Roboto", sans-serif; |
| 6 |
--great: "Great Vibes", cursive; |
| 7 |
--bg_gradient: linear-gradient(45deg, #F5FDFF, #FEEFEC); |
| 8 |
--bbpc_brand_color: var(--bbpc_brand_color_opt,#0866ff); |
| 9 |
--h_title: #1d2746; |
| 10 |
--p_color: #6b707f; |
| 11 |
--bs-white: #fff; |
| 12 |
--black_25: #f9f9f9; |
| 13 |
--black_50: #f2f2f2; |
| 14 |
--black_75: #eeeeee; |
| 15 |
--black_90: #e0e6f0; |
| 16 |
--black_100: #d6d9dc; |
| 17 |
--black_150: #c8ccd0; |
| 18 |
--black_200: #bbc0c4; |
| 19 |
--black_300: #9fa6ad; |
| 20 |
--black_350: #9199a1; |
| 21 |
--black_400: #848d95; |
| 22 |
--black_500: #6a737c; |
| 23 |
--black_600: #535a60; |
| 24 |
--black_700: #3c4146; |
| 25 |
--black_750: #2f3337; |
| 26 |
--black_800: #242729; |
| 27 |
--black_900: #0c0d0e; |
| 28 |
--bbpc_color: #078669; |
| 29 |
--baseColor2: #4a6ee0; |
| 30 |
--bs_white: #fff; |
| 31 |
} |
| 32 |
|
| 33 |
/*font Variables*/ |
| 34 |
|
| 35 |
/**=== Functions ===**/ |
| 36 |
|
| 37 |
.col-md-offset-right-1, |
| 38 |
.col-lg-offset-right-1 { |
| 39 |
margin-right: 8.33333333%; |
| 40 |
} |
| 41 |
|
| 42 |
.communities-boxes { |
| 43 |
display: flex; |
| 44 |
flex-wrap: wrap; |
| 45 |
margin: 0 -30px; |
| 46 |
gap: 30px; |
| 47 |
} |
| 48 |
|
| 49 |
@media (max-width: 1025px) { |
| 50 |
.communities-boxes { |
| 51 |
margin: 0 -10px; |
| 52 |
} |
| 53 |
} |
| 54 |
|
| 55 |
@media (max-width: 992px) { |
| 56 |
.communities-boxes { |
| 57 |
flex-wrap: wrap; |
| 58 |
justify-content: center; |
| 59 |
width: calc(100% + 30px); |
| 60 |
} |
| 61 |
} |
| 62 |
|
| 63 |
@media (max-width: 420px) { |
| 64 |
.communities-boxes { |
| 65 |
width: calc(100% + 15px); |
| 66 |
} |
| 67 |
} |
| 68 |
|
| 69 |
.communities-boxes .com-box { |
| 70 |
text-align: center; |
| 71 |
margin-bottom: 57px; |
| 72 |
width: 20%; |
| 73 |
flex: 0 0 200px; |
| 74 |
} |
| 75 |
|
| 76 |
@media (max-width: 1200px) { |
| 77 |
.communities-boxes .com-box { |
| 78 |
flex: 0 0 165px; |
| 79 |
} |
| 80 |
} |
| 81 |
|
| 82 |
@media (max-width: 991px) { |
| 83 |
.communities-boxes .com-box { |
| 84 |
flex: 0 0 180px; |
| 85 |
} |
| 86 |
} |
| 87 |
|
| 88 |
@media (max-width: 768px) { |
| 89 |
.communities-boxes .com-box { |
| 90 |
flex: 0 0 185px; |
| 91 |
} |
| 92 |
} |
| 93 |
|
| 94 |
@media (max-width: 426px) { |
| 95 |
.communities-boxes .com-box { |
| 96 |
flex: 0 0 170px; |
| 97 |
margin-bottom: 30px; |
| 98 |
} |
| 99 |
} |
| 100 |
|
| 101 |
.communities-boxes .com-box .icon-container { |
| 102 |
border-radius: 6px; |
| 103 |
background: var(--bs-white); |
| 104 |
box-shadow: 0 40px 70px 0 rgba(2, 47, 57, 0.1); |
| 105 |
display: flex; |
| 106 |
align-items: center; |
| 107 |
justify-content: center; |
| 108 |
height: 100px; |
| 109 |
width: 100px; |
| 110 |
margin: 0 auto 20px; |
| 111 |
} |
| 112 |
|
| 113 |
.communities-boxes .com-box .icon-container img { |
| 114 |
width: 40px; |
| 115 |
height: 40px; |
| 116 |
-o-object-fit: cover; |
| 117 |
object-fit: cover; |
| 118 |
} |
| 119 |
|
| 120 |
.communities-boxes .com-box .com-box-content .title { |
| 121 |
font-size: 20px; |
| 122 |
line-height: 26px; |
| 123 |
font-weight: 500; |
| 124 |
color: var(--black_800); |
| 125 |
margin-bottom: 5px; |
| 126 |
transition: all 0.3s ease-in-out; |
| 127 |
letter-spacing: normal; |
| 128 |
margin-top: 10px; |
| 129 |
} |
| 130 |
|
| 131 |
.communities-boxes .com-box .com-box-content .title a { |
| 132 |
color: var(--black_800); |
| 133 |
} |
| 134 |
|
| 135 |
.communities-boxes .com-box .com-box-content .title a:hover { |
| 136 |
color: var(--bbpc_brand_color); |
| 137 |
text-decoration: none; |
| 138 |
} |
| 139 |
|
| 140 |
.communities-boxes .com-box .com-box-content .title:hover { |
| 141 |
color: var(--bbpc_brand_color); |
| 142 |
} |
| 143 |
|
| 144 |
.communities-boxes .com-box .com-box-content .total-post { |
| 145 |
color: var(--p_color); |
| 146 |
font-size: 14px; |
| 147 |
margin-top: 0; |
| 148 |
} |
| 149 |
|
| 150 |
.more-communities { |
| 151 |
padding: 22px 0; |
| 152 |
border-top: 1px solid #e8ecee; |
| 153 |
border-bottom: 1px solid #e8ecee; |
| 154 |
} |
| 155 |
|
| 156 |
.more-communities .collapse-wrap { |
| 157 |
margin-top: 80px; |
| 158 |
display: none; |
| 159 |
} |
| 160 |
|
| 161 |
.more-communities .collapse-btn-wrap { |
| 162 |
text-align: center; |
| 163 |
display: table; |
| 164 |
color: var(--black_600); |
| 165 |
font-weight: 500; |
| 166 |
margin: auto; |
| 167 |
} |
| 168 |
|
| 169 |
.more-communities .collapse-btn-wrap:hover { |
| 170 |
text-decoration: none; |
| 171 |
color: var(--black_800); |
| 172 |
} |
| 173 |
|
| 174 |
.more-communities .collapse-btn-wrap svg { |
| 175 |
position: relative; |
| 176 |
vertical-align: middle; |
| 177 |
display: inline; |
| 178 |
} |
| 179 |
|
| 180 |
.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 { |
| 181 |
stroke: var(--bbpc_brand_color); |
| 182 |
} |
| 183 |
|
| 184 |
.more-communities .collapse-btn-wrap .icon_minus { |
| 185 |
display: none; |
| 186 |
} |
| 187 |
|
| 188 |
.more-communities .collapse-btn-wrap.active .icon_plus { |
| 189 |
display: none; |
| 190 |
} |
| 191 |
|
| 192 |
.more-communities .collapse-btn-wrap.active .icon_minus { |
| 193 |
display: initial; |
| 194 |
} |
| 195 |
|
| 196 |
body.body_dark .communities-boxes .com-box .com-box-content .title a { |
| 197 |
color: #fff; |
| 198 |
} |
| 199 |
|
| 200 |
body.body_dark .communities-boxes .com-box .com-box-content .title a:hover { |
| 201 |
color: var(--bbpc_brand_color); |
| 202 |
} |
| 203 |
|
| 204 |
body.body_dark .communities-boxes .com-box .com-box-content .total-post { |
| 205 |
color: #8b8b8b; |
| 206 |
} |
| 207 |
|
| 208 |
body.body_dark .more-communities { |
| 209 |
border-color: #272727; |
| 210 |
} |
| 211 |
|
| 212 |
body.body_dark .single-forum-post-widget .post-info div { |
| 213 |
color: #848d95; |
| 214 |
} |
| 215 |
|
| 216 |
body.body_dark .single-forum-post-widget .post-info .post-category a { |
| 217 |
color: #848d95; |
| 218 |
} |
| 219 |
|
| 220 |
body.body_dark .single-forum-post-widget .post-info .post-category a:hover { |
| 221 |
color: var(--bbpc_brand_color); |
| 222 |
} |
| 223 |
|
| 224 |
body.body_dark .community-area .nav-tabs .nav-item button.active { |
| 225 |
color: #fff; |
| 226 |
} |
| 227 |
|
| 228 |
/** === Widgets === **/ |
| 229 |
|
| 230 |
.widget_display_stats dl dt { |
| 231 |
float: left; |
| 232 |
clear: left; |
| 233 |
margin: 0 0 10px; |
| 234 |
font-weight: 500; |
| 235 |
} |
| 236 |
|
| 237 |
.widget_display_stats dl dd { |
| 238 |
float: right; |
| 239 |
margin: 0; |
| 240 |
} |
| 241 |
|
| 242 |
.widget_display_replies li:before { |
| 243 |
font-family: eleganticons; |
| 244 |
content: "w"; |
| 245 |
font-size: 15px !important; |
| 246 |
margin: 0 12px 0 0 !important; |
| 247 |
padding: 0px !important; |
| 248 |
line-height: 23px; |
| 249 |
} |
| 250 |
|
| 251 |
.widget_display_topics li div { |
| 252 |
color: var(--black_400); |
| 253 |
} |
| 254 |
|
| 255 |
.widget_display_topics li::before { |
| 256 |
font-family: eleganticons; |
| 257 |
content: "b"; |
| 258 |
margin: -3px 12px 0 0; |
| 259 |
font-size: 15px; |
| 260 |
color: var(--black_800); |
| 261 |
position: absolute; |
| 262 |
left: 0; |
| 263 |
top: 0; |
| 264 |
} |
| 265 |
|
| 266 |
.widget_display_topics .bbp-forum-title, |
| 267 |
.widget_display_replies .bbp-forum-title { |
| 268 |
display: inline-block; |
| 269 |
line-height: 1.36; |
| 270 |
color: var(--black_900); |
| 271 |
} |
| 272 |
|
| 273 |
.widget_display_topics li { |
| 274 |
padding-left: 30px; |
| 275 |
} |
| 276 |
|
| 277 |
.widget_display_topics li, |
| 278 |
.widget_display_replies li { |
| 279 |
position: relative; |
| 280 |
margin-bottom: 10px; |
| 281 |
padding-bottom: 10px; |
| 282 |
border-bottom: 1px solid #e5e7e9; |
| 283 |
font-size: 16px; |
| 284 |
} |
| 285 |
|
| 286 |
.widget_display_topics li time, |
| 287 |
.widget_display_replies li time { |
| 288 |
color: var(--black_400); |
| 289 |
display: block; |
| 290 |
font-size: 14px; |
| 291 |
} |
| 292 |
|
| 293 |
.widget_display_topics li div, |
| 294 |
.widget_display_replies li div { |
| 295 |
font-size: 14px; |
| 296 |
} |
| 297 |
|
| 298 |
.widget_display_topics li a, |
| 299 |
.widget_display_replies li a { |
| 300 |
color: var(--black_800); |
| 301 |
} |
| 302 |
|
| 303 |
.widget_display_topics li a .bbp-author-avatar img, |
| 304 |
.widget_display_replies li a .bbp-author-avatar img { |
| 305 |
border-radius: 50px; |
| 306 |
} |
| 307 |
|
| 308 |
.widget_display_replies li .bbp-author-avatar { |
| 309 |
margin-right: 5px; |
| 310 |
} |
| 311 |
|
| 312 |
.widget_display_topics li a:hover, |
| 313 |
.widget_display_replies li a:hover { |
| 314 |
color: var(--bbpc_brand_color); |
| 315 |
} |
| 316 |
|
| 317 |
.bbp-logged-in .avatar { |
| 318 |
float: left; |
| 319 |
margin: 0 15px 0 0; |
| 320 |
border-radius: 99%; |
| 321 |
} |
| 322 |
|
| 323 |
.bbp-logged-in h4 { |
| 324 |
font-weight: normal; |
| 325 |
font-size: 18px; |
| 326 |
clear: none; |
| 327 |
margin: 0 0 5px; |
| 328 |
} |
| 329 |
|
| 330 |
.bbp-logged-in h4 a { |
| 331 |
color: #333; |
| 332 |
font-weight: 500; |
| 333 |
} |
| 334 |
|
| 335 |
.bbp-logged-in a.button.logout-link:hover, |
| 336 |
.bbp-logged-in h4 a:hover { |
| 337 |
color: var(--bbpc_brand_color); |
| 338 |
} |
| 339 |
|
| 340 |
.bbp-logged-in a.button.logout-link:hover, |
| 341 |
.bbp-logged-in a.button.logout-link { |
| 342 |
color: #666; |
| 343 |
} |
| 344 |
|
| 345 |
.forum-post-content .content img { |
| 346 |
max-width: 100%; |
| 347 |
height: auto; |
| 348 |
} |
| 349 |
|
| 350 |
ul.bbp-topics-widget.newness img { |
| 351 |
border-radius: 50%; |
| 352 |
margin: 5px; |
| 353 |
} |
| 354 |
|
| 355 |
.bbp-submit-wrapper { |
| 356 |
float: left; |
| 357 |
margin-top: 0; |
| 358 |
} |
| 359 |
|
| 360 |
.forum-post-content .forum-post-btm .taxonomy.forum-post-cat { |
| 361 |
display: flex; |
| 362 |
} |
| 363 |
|
| 364 |
.bbp-topic-reply-link { |
| 365 |
padding: 6px 20px; |
| 366 |
font-weight: 400; |
| 367 |
border-radius: 2px; |
| 368 |
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; |
| 369 |
background: #fff; |
| 370 |
border: 1px solid #d0d8dc; |
| 371 |
color: var(--black_800); |
| 372 |
height: 26px; |
| 373 |
font-size: 12px; |
| 374 |
line-height: 26px; |
| 375 |
} |
| 376 |
|
| 377 |
.comment-content .bbp-topic-reply-link:hover { |
| 378 |
background: #fff; |
| 379 |
border: 1px solid var(--black_800); |
| 380 |
color: var(--black_800); |
| 381 |
} |
| 382 |
|
| 383 |
.page-numbers { |
| 384 |
cursor: pointer !important; |
| 385 |
} |
| 386 |
|
| 387 |
.pagination-wrapper .page-numbers.next { |
| 388 |
display: flex; |
| 389 |
align-items: center; |
| 390 |
justify-content: center; |
| 391 |
padding-bottom: 2px; |
| 392 |
} |
| 393 |
|
| 394 |
.post-header .support-total-info li a { |
| 395 |
font-weight: 400; |
| 396 |
} |
| 397 |
|
| 398 |
.post-header .support-total-info li a { |
| 399 |
color: #6b707f; |
| 400 |
} |
| 401 |
|
| 402 |
.post-header .support-total-info li a.open-data.loading { |
| 403 |
color: var(--black_800); |
| 404 |
font-weight: 500; |
| 405 |
} |
| 406 |
|
| 407 |
#tagList { |
| 408 |
padding-left: 40px; |
| 409 |
} |
| 410 |
|
| 411 |
.userlist { |
| 412 |
padding-left: 15px; |
| 413 |
} |
| 414 |
|
| 415 |
.post-header .category-menu .all-users a { |
| 416 |
position: relative; |
| 417 |
} |
| 418 |
|
| 419 |
.post-header .category-menu .all-users a .count { |
| 420 |
background: #ebedf0; |
| 421 |
border-radius: 10px; |
| 422 |
color: #838793; |
| 423 |
font-size: 12px; |
| 424 |
position: absolute; |
| 425 |
margin-left: 5px; |
| 426 |
padding: 1px 5px 0; |
| 427 |
top: 8px; |
| 428 |
width: auto; |
| 429 |
height: auto; |
| 430 |
} |
| 431 |
|
| 432 |
/*# sourceMappingURL=index.css.map*/ |