| 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/forum-posts/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 |
.community-post { |
| 43 |
border-radius: 6px; |
| 44 |
box-shadow: 0 2px 4px 0 rgba(2, 47, 57, 0.1); |
| 45 |
padding: 23px 30px; |
| 46 |
display: flex; |
| 47 |
background: var(--bs-white); |
| 48 |
align-items: center; |
| 49 |
justify-content: space-between; |
| 50 |
margin-bottom: 10px; |
| 51 |
transition: all 0.3s ease-in-out; |
| 52 |
border: 1px solid var(--black_50); |
| 53 |
} |
| 54 |
|
| 55 |
.community-post:hover { |
| 56 |
box-shadow: 0 24px 40px 0 rgba(2, 47, 57, 0.12); |
| 57 |
border-color: #eef3f6; |
| 58 |
transform: translateX(10px); |
| 59 |
} |
| 60 |
|
| 61 |
.community-post .post-content { |
| 62 |
display: flex; |
| 63 |
align-items: center; |
| 64 |
flex-wrap: wrap; |
| 65 |
} |
| 66 |
|
| 67 |
.community-post .post-content .author-avatar { |
| 68 |
margin-right: 25px; |
| 69 |
border-radius: 50%; |
| 70 |
overflow: hidden; |
| 71 |
margin-top: -2px; |
| 72 |
} |
| 73 |
|
| 74 |
.community-post .post-content .entry-content { |
| 75 |
color: var(--black_600); |
| 76 |
font-size: 16px; |
| 77 |
font-family: "Roboto", sans-serif; |
| 78 |
} |
| 79 |
|
| 80 |
.community-post .post-content img { |
| 81 |
border-radius: 50%; |
| 82 |
} |
| 83 |
|
| 84 |
.community-post.forum-item { |
| 85 |
padding: 23px 15px; |
| 86 |
} |
| 87 |
|
| 88 |
.community-post.forum-item .post-content p { |
| 89 |
font-size: 14px; |
| 90 |
line-height: 1.3; |
| 91 |
} |
| 92 |
|
| 93 |
@media (max-width: 667px) { |
| 94 |
.community-post { |
| 95 |
display: block; |
| 96 |
} |
| 97 |
} |
| 98 |
|
| 99 |
@media (max-width: 420px) { |
| 100 |
.community-post { |
| 101 |
padding: 20px 15px; |
| 102 |
} |
| 103 |
} |
| 104 |
|
| 105 |
.community-post .post-content .author-avatar.forum-icon { |
| 106 |
border-radius: 0; |
| 107 |
} |
| 108 |
|
| 109 |
.community-post .post-content .author-avatar.forum-icon img { |
| 110 |
padding: 2px; |
| 111 |
} |
| 112 |
|
| 113 |
@media (max-width: 667px) { |
| 114 |
.community-post .post-content .author-avatar { |
| 115 |
margin-right: 20px; |
| 116 |
} |
| 117 |
} |
| 118 |
|
| 119 |
@media (max-width: 420px) { |
| 120 |
.community-post .post-content .author-avatar { |
| 121 |
margin-right: 15px; |
| 122 |
} |
| 123 |
} |
| 124 |
|
| 125 |
.community-post .post-content .entry-content { |
| 126 |
flex: 2; |
| 127 |
} |
| 128 |
|
| 129 |
.community-post .post-content .entry-content .post-title { |
| 130 |
font-size: 18px; |
| 131 |
font-weight: 500; |
| 132 |
margin: auto; |
| 133 |
margin-bottom: 0; |
| 134 |
line-height: 1.7; |
| 135 |
} |
| 136 |
|
| 137 |
.community-post .post-content .entry-content .post-title a { |
| 138 |
text-decoration: none; |
| 139 |
} |
| 140 |
|
| 141 |
.community-post .post-content .entry-content .post-title a:hover { |
| 142 |
color: var(--bbpc_brand_color); |
| 143 |
} |
| 144 |
|
| 145 |
.community-post .post-content .entry-content p { |
| 146 |
margin: 0; |
| 147 |
} |
| 148 |
|
| 149 |
@media (max-width: 667px) { |
| 150 |
.community-post .post-meta-wrapper { |
| 151 |
margin-top: 15px; |
| 152 |
margin-left: 70px; |
| 153 |
} |
| 154 |
} |
| 155 |
|
| 156 |
.community-post .post-meta-wrapper .post-meta-info { |
| 157 |
margin: 0; |
| 158 |
padding: 0; |
| 159 |
list-style: none; |
| 160 |
} |
| 161 |
|
| 162 |
@media (max-width: 991px) { |
| 163 |
.community-post .post-meta-wrapper .post-meta-info li:not(:last-child) { |
| 164 |
margin-right: 20px; |
| 165 |
} |
| 166 |
} |
| 167 |
|
| 168 |
.community-post .post-meta-wrapper .post-meta-info li a { |
| 169 |
display: block; |
| 170 |
color: var(--black_600); |
| 171 |
} |
| 172 |
|
| 173 |
.community-post .post-meta-wrapper .post-meta-info li a i { |
| 174 |
margin-right: 10px; |
| 175 |
} |
| 176 |
|
| 177 |
.community-post .post-meta-wrapper .post-meta-info li a:hover { |
| 178 |
color: var(--bbpc_brand_color); |
| 179 |
} |
| 180 |
|
| 181 |
.community-post.style-two { |
| 182 |
margin-bottom: 0; |
| 183 |
border-radius: 0; |
| 184 |
box-shadow: none; |
| 185 |
position: relative; |
| 186 |
} |
| 187 |
|
| 188 |
.community-post.style-two .entry-content .post-title { |
| 189 |
font-size: 16px; |
| 190 |
} |
| 191 |
|
| 192 |
.community-post.style-two .post-meta-wrapper .post-meta-info li i { |
| 193 |
transition: all 0.3s ease-in-out; |
| 194 |
} |
| 195 |
|
| 196 |
.community-post.style-two .post-meta-wrapper .post-meta-info li:nth-child(2):hover a { |
| 197 |
color: #b1b5c0; |
| 198 |
} |
| 199 |
|
| 200 |
.community-post.style-two .post-meta-wrapper .post-meta-info li:nth-child(2):hover i { |
| 201 |
color: #f9ae44; |
| 202 |
} |
| 203 |
|
| 204 |
.community-post.style-two .com-featured { |
| 205 |
position: absolute; |
| 206 |
right: 0; |
| 207 |
top: -2px; |
| 208 |
height: 30px; |
| 209 |
width: 30px; |
| 210 |
z-index: 2; |
| 211 |
text-align: center; |
| 212 |
color: #fff; |
| 213 |
padding: 0 15px; |
| 214 |
} |
| 215 |
|
| 216 |
.community-post.style-two .com-featured i { |
| 217 |
z-index: 22; |
| 218 |
position: relative; |
| 219 |
font-size: 14px; |
| 220 |
} |
| 221 |
|
| 222 |
.community-post.style-two .com-featured:after { |
| 223 |
content: ""; |
| 224 |
top: 0; |
| 225 |
position: absolute; |
| 226 |
right: 0; |
| 227 |
width: 0; |
| 228 |
height: 0; |
| 229 |
border-left: 30px solid transparent; |
| 230 |
border-right: 0 solid transparent; |
| 231 |
border-top: 30px solid #00ae69; |
| 232 |
z-index: 1; |
| 233 |
} |
| 234 |
|
| 235 |
.community-post.style-two .cat-wrap { |
| 236 |
display: inline-block; |
| 237 |
vertical-align: 3px; |
| 238 |
} |
| 239 |
|
| 240 |
.community-post .meta { |
| 241 |
margin: 0; |
| 242 |
padding: 0; |
| 243 |
list-style: none; |
| 244 |
} |
| 245 |
|
| 246 |
.community-post .meta li img { |
| 247 |
display: inline-block; |
| 248 |
vertical-align: -2px; |
| 249 |
} |
| 250 |
|
| 251 |
.community-post .meta li i, |
| 252 |
.community-post .meta li img { |
| 253 |
margin-right: 10px; |
| 254 |
font-size: 14px; |
| 255 |
} |
| 256 |
|
| 257 |
.community-post .meta li a { |
| 258 |
font-size: 14px; |
| 259 |
color: #838793; |
| 260 |
} |
| 261 |
|
| 262 |
.community-post .meta li a:hover { |
| 263 |
color: var(--bbpc_brand_color); |
| 264 |
} |
| 265 |
|
| 266 |
.community-post .post-meta-wrapper .post-meta-info li:first-child { |
| 267 |
margin-right: 40px; |
| 268 |
} |
| 269 |
|
| 270 |
.community-post .post-meta-wrapper .post-meta-info li { |
| 271 |
display: inline-block; |
| 272 |
} |
| 273 |
|
| 274 |
.forum-post-content .forum-post-btm .taxonomy i, |
| 275 |
.forum-post-content .forum-post-btm .taxonomy img, |
| 276 |
.community-post .post-meta-wrapper .post-meta-info li a i, |
| 277 |
.community-post .post-meta-wrapper .post-meta-info li a img, |
| 278 |
.community-post.style-two .meta li i, |
| 279 |
.community-post.style-two .meta li img { |
| 280 |
margin-right: 5px; |
| 281 |
} |
| 282 |
|
| 283 |
.post-header .category-menu li i, |
| 284 |
.community-post .post-meta-wrapper .post-meta-info li a i { |
| 285 |
font-size: 14px; |
| 286 |
} |
| 287 |
|
| 288 |
/*# sourceMappingURL=index.css.map*/ |