| 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/single-forum/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-left: 8.33333333%; |
| 40 |
} |
| 41 |
|
| 42 |
.forum-with-topics { |
| 43 |
border-radius: 30px; |
| 44 |
} |
| 45 |
|
| 46 |
.forum-with-topics .thumb-area .forum-thumbnail { |
| 47 |
border-radius: 8px 8px 0 0; |
| 48 |
width: 100%; |
| 49 |
} |
| 50 |
|
| 51 |
.forum-with-topics .thumb-area .forum-thumbnail img { |
| 52 |
width: 100%; |
| 53 |
z-index: -1; |
| 54 |
} |
| 55 |
|
| 56 |
.forum-with-topics .topic-table .topic-heading { |
| 57 |
display: flex; |
| 58 |
flex-wrap: wrap; |
| 59 |
background: var(--bs-white); |
| 60 |
box-shadow: 0 20px 60px -5px rgba(51, 77, 114, 0.12); |
| 61 |
padding: 16px 30px; |
| 62 |
border-radius: 0 0 8px 8px; |
| 63 |
border: 1px solid var(--black_50); |
| 64 |
} |
| 65 |
|
| 66 |
.forum-with-topics .topic-table .topic-heading .icon-text { |
| 67 |
color: var(--black_600); |
| 68 |
font-size: 14px; |
| 69 |
font-weight: 400; |
| 70 |
display: flex; |
| 71 |
align-items: center; |
| 72 |
} |
| 73 |
|
| 74 |
.forum-with-topics .topic-table .topic-heading .icon-text svg { |
| 75 |
margin-left: 5px; |
| 76 |
} |
| 77 |
|
| 78 |
.forum-with-topics .topic-table .topic-heading .topic { |
| 79 |
width: 54%; |
| 80 |
} |
| 81 |
|
| 82 |
.forum-with-topics .topic-table .topic-heading .voice { |
| 83 |
width: 13%; |
| 84 |
} |
| 85 |
|
| 86 |
.forum-with-topics .topic-table .topic-heading .replies { |
| 87 |
width: 8%; |
| 88 |
} |
| 89 |
|
| 90 |
.forum-with-topics .topic-table .topic-heading .freshness { |
| 91 |
width: 20%; |
| 92 |
} |
| 93 |
|
| 94 |
.forum-with-topics .topic-table .topic-contents { |
| 95 |
display: flex; |
| 96 |
background: var(--bs-white); |
| 97 |
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); |
| 98 |
margin: 10px 0; |
| 99 |
border-radius: 8px; |
| 100 |
padding: 16px 30px; |
| 101 |
border: 1px solid var(--black_50); |
| 102 |
align-items: center; |
| 103 |
} |
| 104 |
|
| 105 |
.forum-with-topics .topic-table .topic-contents .title { |
| 106 |
width: 50%; |
| 107 |
} |
| 108 |
|
| 109 |
.forum-with-topics .topic-table .topic-contents .title:hover a { |
| 110 |
text-decoration: none; |
| 111 |
} |
| 112 |
|
| 113 |
.forum-with-topics .topic-table .topic-contents .title p { |
| 114 |
margin-top: 0; |
| 115 |
margin-bottom: 0; |
| 116 |
font-size: 15px; |
| 117 |
} |
| 118 |
|
| 119 |
.forum-with-topics .topic-table .topic-contents .title h3 { |
| 120 |
font-size: 16px; |
| 121 |
margin-bottom: 5px; |
| 122 |
margin-top: 0; |
| 123 |
line-height: 20px; |
| 124 |
} |
| 125 |
|
| 126 |
.forum-with-topics .topic-table .topic-contents .title h3:hover { |
| 127 |
color: var(--bbpc_brand_color); |
| 128 |
} |
| 129 |
|
| 130 |
.forum-with-topics .topic-table .topic-contents .voice { |
| 131 |
width: 12%; |
| 132 |
} |
| 133 |
|
| 134 |
.forum-with-topics .topic-table .topic-contents .topics { |
| 135 |
width: 14%; |
| 136 |
} |
| 137 |
|
| 138 |
.forum-with-topics .topic-table .topic-contents .voice, |
| 139 |
.forum-with-topics .topic-table .topic-contents .topics { |
| 140 |
text-align: center; |
| 141 |
} |
| 142 |
|
| 143 |
.forum-with-topics .topic-table .topic-contents .user { |
| 144 |
width: 25%; |
| 145 |
margin-top: 2px; |
| 146 |
} |
| 147 |
|
| 148 |
.forum-with-topics .topic-table .topic-contents .user .user-data { |
| 149 |
display: flex; |
| 150 |
} |
| 151 |
|
| 152 |
.forum-with-topics .topic-table .topic-contents .user .user-img { |
| 153 |
margin-left: 10px; |
| 154 |
} |
| 155 |
|
| 156 |
.forum-with-topics .topic-table .topic-contents .user .user-img img { |
| 157 |
border-radius: 50%; |
| 158 |
} |
| 159 |
|
| 160 |
.forum-with-topics .topic-table .topic-contents .user .user-info span.bbp-author-name { |
| 161 |
font-size: 14px; |
| 162 |
font-weight: 400; |
| 163 |
color: var(--black_800); |
| 164 |
letter-spacing: normal; |
| 165 |
margin-bottom: 8px; |
| 166 |
display: inline-block; |
| 167 |
} |
| 168 |
|
| 169 |
.forum-with-topics .topic-table .topic-contents .user .user-info .date { |
| 170 |
font-size: 13px; |
| 171 |
margin: 0; |
| 172 |
line-height: 1.5; |
| 173 |
} |
| 174 |
|
| 175 |
.forum-with-topics .topic-table .topic-contents .user .user-info .date a { |
| 176 |
color: var(--black_400); |
| 177 |
} |
| 178 |
|
| 179 |
.forum-with-topics .topic-table .topic-contents .user .user-info .date a:hover { |
| 180 |
color: var(--bbpc_brand_color); |
| 181 |
text-decoration: none; |
| 182 |
} |
| 183 |
|
| 184 |
.forum-with-topics .topic-table .topic-contents .user .user-info h3 { |
| 185 |
line-height: 0.5; |
| 186 |
margin: 0; |
| 187 |
} |
| 188 |
|
| 189 |
.forum-with-topics .topic-table .topic-contents h3 a { |
| 190 |
color: #171D24 !important; |
| 191 |
font-size: 16px; |
| 192 |
} |
| 193 |
|
| 194 |
.forum-with-topics .topic-table .topic-contents h3 a:hover { |
| 195 |
text-decoration: none; |
| 196 |
color: var(--bbpc_brand_color) !important; |
| 197 |
} |
| 198 |
|
| 199 |
.forum-with-topics .topic-table .topic-contents h3 a:hover span { |
| 200 |
color: var(--bbpc_brand_color) !important; |
| 201 |
} |
| 202 |
|
| 203 |
.forum-info { |
| 204 |
padding: 50px 30px; |
| 205 |
} |
| 206 |
|
| 207 |
.forum-info .title-area { |
| 208 |
align-items: center; |
| 209 |
} |
| 210 |
|
| 211 |
@media all and (max-width: 560px) { |
| 212 |
.forum-info .title-area { |
| 213 |
margin-top: 10px; |
| 214 |
} |
| 215 |
} |
| 216 |
|
| 217 |
.forum-info .title-area .title, |
| 218 |
.forum-info .title-area .subtitle { |
| 219 |
color: #fff; |
| 220 |
} |
| 221 |
|
| 222 |
.forum-info .title-area .title { |
| 223 |
font-size: 28px; |
| 224 |
text-transform: capitalize; |
| 225 |
margin: 0; |
| 226 |
letter-spacing: normal; |
| 227 |
} |
| 228 |
|
| 229 |
@media all and (max-width: 560px) { |
| 230 |
.forum-info .title-area .title { |
| 231 |
margin-bottom: 4px; |
| 232 |
} |
| 233 |
} |
| 234 |
|
| 235 |
.forum-info .title-area .subtitle { |
| 236 |
font-style: italic; |
| 237 |
} |
| 238 |
|
| 239 |
.forum-meta { |
| 240 |
display: flex; |
| 241 |
position: absolute; |
| 242 |
list-style-type: none; |
| 243 |
top: 20px; |
| 244 |
left: 20px; |
| 245 |
margin: 0; |
| 246 |
} |
| 247 |
|
| 248 |
.forum-meta li { |
| 249 |
display: flex; |
| 250 |
margin-left: 10px; |
| 251 |
line-height: 1 !important; |
| 252 |
border-radius: 3px; |
| 253 |
margin-right: 0; |
| 254 |
} |
| 255 |
|
| 256 |
.forum-meta li.button { |
| 257 |
padding: 0; |
| 258 |
} |
| 259 |
|
| 260 |
.forum-meta li.button:hover { |
| 261 |
text-decoration: none; |
| 262 |
} |
| 263 |
|
| 264 |
.forum-meta li:hover a { |
| 265 |
text-decoration: none; |
| 266 |
} |
| 267 |
|
| 268 |
.forum-meta li:last-child { |
| 269 |
margin-left: 0; |
| 270 |
} |
| 271 |
|
| 272 |
.forum-meta .topics, |
| 273 |
.forum-meta .replies { |
| 274 |
color: #fff; |
| 275 |
display: inline-flex; |
| 276 |
align-items: center; |
| 277 |
background: rgba(255, 255, 255, 0.15); |
| 278 |
padding: 8px; |
| 279 |
font-size: 14px !important; |
| 280 |
margin-top: 0; |
| 281 |
} |
| 282 |
|
| 283 |
.forum-meta .topics:hover, |
| 284 |
.forum-meta .replies:hover { |
| 285 |
background: rgba(255, 255, 255, 0.3); |
| 286 |
} |
| 287 |
|
| 288 |
.forum-meta .topics svg, |
| 289 |
.forum-meta .replies svg { |
| 290 |
margin-left: 5px; |
| 291 |
} |
| 292 |
|
| 293 |
.forum-meta .button a { |
| 294 |
color: #ffffff; |
| 295 |
background: var(--bbpc_brand_color); |
| 296 |
padding: 8px 14px; |
| 297 |
font-size: 14px !important; |
| 298 |
border-radius: 3px; |
| 299 |
} |
| 300 |
|
| 301 |
.forum-meta .button a:hover { |
| 302 |
background: #085d4c; |
| 303 |
} |
| 304 |
|
| 305 |
.forum-card { |
| 306 |
background: var(--bs-white); |
| 307 |
border-radius: 8px 8px 8px 8px; |
| 308 |
border: 1px solid var(--black_50); |
| 309 |
overflow: hidden; |
| 310 |
} |
| 311 |
|
| 312 |
.forum-card .card-body { |
| 313 |
padding: 25px; |
| 314 |
} |
| 315 |
|
| 316 |
.forum-card .card-body p { |
| 317 |
margin-bottom: 0; |
| 318 |
} |
| 319 |
|
| 320 |
.forum-card .card-title h3 { |
| 321 |
font-size: 18px; |
| 322 |
margin-bottom: 5px; |
| 323 |
margin-top: unset; |
| 324 |
} |
| 325 |
|
| 326 |
.forum-card .card-title h3:hover a { |
| 327 |
color: #0b589d; |
| 328 |
} |
| 329 |
|
| 330 |
.forum-card .card-title a { |
| 331 |
text-decoration: none; |
| 332 |
} |
| 333 |
|
| 334 |
.forum-card .forum-card-thumbnail-area { |
| 335 |
position: relative; |
| 336 |
border-radius: 30px 30px 0 0; |
| 337 |
padding: 10px 25px; |
| 338 |
} |
| 339 |
|
| 340 |
.forum-card .forum-card-thumbnail-area img { |
| 341 |
width: auto; |
| 342 |
} |
| 343 |
|
| 344 |
.forum-card .forum-meta { |
| 345 |
display: flex; |
| 346 |
position: absolute; |
| 347 |
bottom: 0; |
| 348 |
left: 20px; |
| 349 |
top: auto; |
| 350 |
margin-bottom: 20px; |
| 351 |
} |
| 352 |
|
| 353 |
.forum-card .forum-meta .topics, .forum-card .forum-meta .replies { |
| 354 |
background: rgba(23, 29, 36, 0.7); |
| 355 |
} |
| 356 |
|
| 357 |
.forum-card .forum-meta .topics:hover, .forum-card .forum-meta .replies:hover { |
| 358 |
background: rgba(23, 29, 36, 0.8); |
| 359 |
} |
| 360 |
|
| 361 |
@media all and (max-width: 560px) { |
| 362 |
.topic-contents .voice, |
| 363 |
.topic-contents .topics, |
| 364 |
.topic-contents .user { |
| 365 |
display: none; |
| 366 |
} |
| 367 |
.topic-table .topic-heading .voice, |
| 368 |
.topic-table .topic-heading .replies, |
| 369 |
.topic-table .topic-heading .freshness { |
| 370 |
display: none !important; |
| 371 |
} |
| 372 |
.topic-table .topic-heading .topic, |
| 373 |
.topic-table .topic-contents .title { |
| 374 |
width: 100% !important; |
| 375 |
} |
| 376 |
} |
| 377 |
|
| 378 |
.home-forum-counter .elementor-element-populated { |
| 379 |
background-color: var(--bs-white); |
| 380 |
} |
| 381 |
|
| 382 |
.home-forum-counter .elementor-element-populated .elementor-counter-number { |
| 383 |
color: var(--black_900); |
| 384 |
} |
| 385 |
|
| 386 |
.home-forum-posts .elementor-post__card { |
| 387 |
background-color: var(--bs-white) !important; |
| 388 |
} |
| 389 |
|
| 390 |
.home-forum-posts .elementor-post__card .elementor-post__title a { |
| 391 |
color: var(--black_900); |
| 392 |
} |
| 393 |
|
| 394 |
.card { |
| 395 |
position: relative; |
| 396 |
display: flex; |
| 397 |
flex-direction: column; |
| 398 |
} |
| 399 |
|
| 400 |
body.body_dark .forum-with-topics .topic-table .topic-contents h3 a { |
| 401 |
color: #fff !important; |
| 402 |
} |
| 403 |
|
| 404 |
body.body_dark .forum-with-topics .topic-table .topic-contents h3 a:hover { |
| 405 |
color: var(--bbpc_brand_color) !important; |
| 406 |
} |
| 407 |
|
| 408 |
body.body_dark .forum-with-topics .topic-table .topic-contents .title p { |
| 409 |
color: var(--black_400); |
| 410 |
} |
| 411 |
|
| 412 |
body.body_dark .forum-with-topics .forum-card .card-body .card-title h3 a { |
| 413 |
color: #fff !important; |
| 414 |
} |
| 415 |
|
| 416 |
body.body_dark .forum-with-topics .forum-card .card-body .card-title h3 a:hover { |
| 417 |
color: var(--bbpc_brand_color) !important; |
| 418 |
} |
| 419 |
|
| 420 |
body.body_dark .forum-with-topics .forum-card .card-body:not(.card-title) { |
| 421 |
color: var(--black_400); |
| 422 |
} |
| 423 |
|