--blog-details.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577
  1. /*========================================
  2. BLOG-DETAILS PAGE STYLE
  3. =========================================*/
  4. .blog-details-thumb img {
  5. width: 100%;
  6. border-radius: 10px;
  7. }
  8. .blog-details-content {
  9. padding: 50px;
  10. margin-bottom: 30px;
  11. background: var(--white);
  12. border-radius: 0px 0px 10px 10px;
  13. }
  14. .blog-details-meta {
  15. display: -webkit-box;
  16. display: -ms-flexbox;
  17. display: flex;
  18. -webkit-box-align: center;
  19. -ms-flex-align: center;
  20. align-items: center;
  21. -webkit-box-pack: start;
  22. -ms-flex-pack: start;
  23. justify-content: flex-start;
  24. -ms-flex-wrap: wrap;
  25. flex-wrap: wrap;
  26. margin-bottom: 20px;
  27. }
  28. .blog-details-meta li {
  29. display: -webkit-box;
  30. display: -ms-flexbox;
  31. display: flex;
  32. -webkit-box-align: center;
  33. -ms-flex-align: center;
  34. align-items: center;
  35. margin-right: 40px;
  36. }
  37. .blog-details-meta li:last-child {
  38. margin: 0px;
  39. }
  40. .blog-details-meta li i {
  41. color: var(--primary);
  42. margin-right: 10px;
  43. font-size: 16px;
  44. }
  45. .blog-details-meta li a,
  46. .blog-details-meta li span {
  47. font-size: 16px;
  48. white-space: nowrap;
  49. text-transform: uppercase;
  50. }
  51. .blog-details-meta li a {
  52. color: var(--text);
  53. transition: all linear .3s;
  54. -webkit-transition: all linear .3s;
  55. -moz-transition: all linear .3s;
  56. -ms-transition: all linear .3s;
  57. -o-transition: all linear .3s;
  58. }
  59. .blog-details-meta li a:hover {
  60. color: var(--primary);
  61. }
  62. .blog-details-title {
  63. line-height: 44px;
  64. margin-bottom: 25px;
  65. }
  66. .blog-details-desc {
  67. font-size: 17px;
  68. line-height: 30px;
  69. margin-bottom: 20px;
  70. }
  71. .blog-details-quote {
  72. padding: 60px 60px 60px 180px;
  73. border-radius: 10px;
  74. margin-bottom: 20px;
  75. background: var(--heading);
  76. position: relative;
  77. }
  78. .blog-details-quote::before {
  79. position: absolute;
  80. content: "\efcd";
  81. left: 60px;
  82. top: 60px;
  83. font-size: 60px;
  84. font-family: "icofont";
  85. color: var(--primary);
  86. }
  87. .blog-details-quote p {
  88. font-size: 28px;
  89. line-height: 1.4;
  90. margin-bottom: 20px;
  91. color: var(--white);
  92. }
  93. .blog-details-quote footer {
  94. letter-spacing: 3px;
  95. color: var(--green-chalk);
  96. text-transform: uppercase;
  97. }
  98. .blog-details-grid {
  99. margin-bottom: 30px;
  100. }
  101. .blog-details-grid img {
  102. border-radius: 10px;
  103. }
  104. .blog-details-grid p {
  105. font-size: 17px;
  106. line-height: 30px;
  107. }
  108. .blog-details-subtitle {
  109. margin-bottom: 30px;
  110. }
  111. .blog-details-subtitle h3 {
  112. margin-bottom: 10px;
  113. }
  114. .blog-details-subtitle p {
  115. font-size: 17px;
  116. line-height: 30px;
  117. }
  118. .blog-details-list {
  119. list-style-type: decimal;
  120. margin: 0px 30px 0px 50px;
  121. }
  122. .blog-details-list li {
  123. margin-bottom: 25px;
  124. }
  125. .blog-details-footer {
  126. padding-top: 45px;
  127. margin-top: 50px;
  128. border-top: 1px solid var(--border);
  129. display: -webkit-box;
  130. display: -ms-flexbox;
  131. display: flex;
  132. -webkit-box-align: center;
  133. -ms-flex-align: center;
  134. align-items: center;
  135. -webkit-box-pack: justify;
  136. -ms-flex-pack: justify;
  137. justify-content: space-between;
  138. }
  139. .blog-details-share li span {
  140. font-size: 18px;
  141. font-weight: 500;
  142. margin-bottom: 10px;
  143. text-transform: capitalize;
  144. display: block;
  145. }
  146. .blog-details-share li {
  147. margin-right: 8px;
  148. display: inline-block;
  149. }
  150. .blog-details-share li a {
  151. width: 40px;
  152. height: 40px;
  153. font-size: 15px;
  154. line-height: 40px;
  155. border-radius: 50%;
  156. text-align: center;
  157. color: var(--text);
  158. background: var(--chalk);
  159. text-transform: capitalize;
  160. transition: all linear .3s;
  161. -webkit-transition: all linear .3s;
  162. -moz-transition: all linear .3s;
  163. -ms-transition: all linear .3s;
  164. -o-transition: all linear .3s;
  165. }
  166. .blog-details-share li a:hover {
  167. color: var(--white);
  168. background: var(--primary);
  169. }
  170. .blog-details-tag li span {
  171. font-size: 18px;
  172. font-weight: 500;
  173. margin-bottom: 10px;
  174. text-transform: capitalize;
  175. display: block;
  176. }
  177. .blog-details-tag li {
  178. margin-right: 8px;
  179. display: inline-block;
  180. }
  181. .blog-details-tag li a {
  182. font-size: 14px;
  183. padding: 3px 12px;
  184. border-radius: 3px;
  185. color: var(--text);
  186. background: var(--chalk);
  187. text-transform: capitalize;
  188. transition: all linear .3s;
  189. -webkit-transition: all linear .3s;
  190. -moz-transition: all linear .3s;
  191. -ms-transition: all linear .3s;
  192. -o-transition: all linear .3s;
  193. }
  194. .blog-details-tag li a:hover {
  195. color: var(--white);
  196. background: var(--primary);
  197. }
  198. .blog-details-profile {
  199. padding: 50px;
  200. border-radius: 10px;
  201. margin-bottom: 30px;
  202. background: var(--white);
  203. text-align: center;
  204. }
  205. .blog-details-profile a img {
  206. width: 100px;
  207. height: 100px;
  208. border-radius: 50%;
  209. margin-bottom: 15px;
  210. border: 8px solid var(--chalk);
  211. }
  212. .blog-details-profile h3 {
  213. text-transform: capitalize;
  214. }
  215. .blog-details-profile h4 {
  216. font-size: 15px;
  217. font-weight: 400;
  218. color: var(--primary);
  219. margin-bottom: 15px;
  220. }
  221. .blog-details-profile ul {
  222. margin-bottom: 25px;
  223. }
  224. .blog-details-profile ul li {
  225. display: inline-block;
  226. margin: 0px 5px;
  227. }
  228. .blog-details-profile ul li a {
  229. width: 40px;
  230. height: 40px;
  231. font-size: 15px;
  232. line-height: 40px;
  233. border-radius: 50%;
  234. text-align: center;
  235. color: var(--text);
  236. background: var(--chalk);
  237. text-transform: capitalize;
  238. transition: all linear .3s;
  239. -webkit-transition: all linear .3s;
  240. -moz-transition: all linear .3s;
  241. -ms-transition: all linear .3s;
  242. -o-transition: all linear .3s;
  243. }
  244. .blog-details-profile ul li a:hover {
  245. color: var(--white);
  246. background: var(--primary);
  247. }
  248. .blog-details-profile p {
  249. font-size: 17px;
  250. line-height: 30px;
  251. }
  252. .blog-details-navigate {
  253. padding: 30px;
  254. border-radius: 10px;
  255. margin-bottom: 30px;
  256. background: var(--white);
  257. }
  258. .blog-details-prev,
  259. .blog-details-next {
  260. margin: 15px;
  261. }
  262. .blog-details-prev h4,
  263. .blog-details-next h4 {
  264. margin-bottom: 20px;
  265. }
  266. .blog-details-prev h4 a,
  267. .blog-details-next h4 a {
  268. color: var(--heading);
  269. transition: all linear .3s;
  270. -webkit-transition: all linear .3s;
  271. -moz-transition: all linear .3s;
  272. -ms-transition: all linear .3s;
  273. -o-transition: all linear .3s;
  274. }
  275. .blog-details-prev h4 a:hover,
  276. .blog-details-next h4 a:hover {
  277. color: var(--primary);
  278. }
  279. .blog-details-prev .nav-arrow,
  280. .blog-details-next .nav-arrow {
  281. font-size: 14px;
  282. padding: 10px 25px;
  283. border-radius: 5px;
  284. color: var(--heading);
  285. background: var(--chalk);
  286. text-transform: uppercase;
  287. transition: all linear .3s;
  288. -webkit-transition: all linear .3s;
  289. -moz-transition: all linear .3s;
  290. -ms-transition: all linear .3s;
  291. -o-transition: all linear .3s;
  292. }
  293. .blog-details-prev .nav-arrow:hover,
  294. .blog-details-next .nav-arrow:hover {
  295. color: var(--white);
  296. background: var(--primary);
  297. }
  298. .blog-details-next {
  299. text-align: right;
  300. }
  301. .blog-details-comment {
  302. padding: 50px;
  303. border-radius: 10px;
  304. margin-bottom: 30px;
  305. background: var(--white);
  306. }
  307. .comment-title {
  308. margin-bottom: 30px;
  309. text-transform: capitalize;
  310. }
  311. .comment-item {
  312. padding: 45px 45px;
  313. border-radius: 8px;
  314. margin-bottom: 30px;
  315. background: var(--chalk);
  316. border: 1px solid var(--border);
  317. }
  318. .comment-item:last-child {
  319. margin-bottom: 0px;
  320. }
  321. .comment-media {
  322. margin-bottom: 15px;
  323. display: -webkit-box;
  324. display: -ms-flexbox;
  325. display: flex;
  326. -webkit-box-align: center;
  327. -ms-flex-align: center;
  328. align-items: center;
  329. -webkit-box-pack: start;
  330. -ms-flex-pack: start;
  331. justify-content: flex-start;
  332. }
  333. .comment-avatar {
  334. border-radius: 50%;
  335. margin-right: 20px;
  336. border: 2px solid var(--primary);
  337. }
  338. .comment-avatar img {
  339. width: 65px;
  340. border-radius: 50%;
  341. border: 2px solid var(--white);
  342. }
  343. .comment-meta a {
  344. color: var(--heading);
  345. text-transform: capitalize;
  346. transition: all linear .3s;
  347. -webkit-transition: all linear .3s;
  348. -moz-transition: all linear .3s;
  349. -ms-transition: all linear .3s;
  350. -o-transition: all linear .3s;
  351. }
  352. .comment-meta a:hover {
  353. color: var(--primary);
  354. }
  355. .comment-meta span {
  356. display: block;
  357. font-size: 14px;
  358. font-weight: 400;
  359. color: var(--heading);
  360. text-transform: capitalize;
  361. }
  362. .comment-desc {
  363. margin-bottom: 20px;
  364. }
  365. .comment-reply {
  366. display: -webkit-box;
  367. display: -ms-flexbox;
  368. display: flex;
  369. -webkit-box-align: center;
  370. -ms-flex-align: center;
  371. align-items: center;
  372. -webkit-box-pack: start;
  373. -ms-flex-pack: start;
  374. justify-content: flex-start;
  375. }
  376. .comment-reply input {
  377. width: 100%;
  378. padding: 7px 18px;
  379. border-radius: 6px;
  380. margin-right: 20px;
  381. background: var(--white);
  382. }
  383. .comment-reply button {
  384. font-size: 15px;
  385. padding: 6px 15px;
  386. border-radius: 6px;
  387. color: var(--white);
  388. background: var(--primary);
  389. text-transform: capitalize;
  390. transition: all linear .3s;
  391. -webkit-transition: all linear .3s;
  392. -moz-transition: all linear .3s;
  393. -ms-transition: all linear .3s;
  394. -o-transition: all linear .3s;
  395. }
  396. .comment-reply button:hover {
  397. background: var(--heading);
  398. }
  399. .comment-reply button i {
  400. margin-right: 5px;
  401. }
  402. .comment-reply-list {
  403. margin-left: 80px;
  404. margin-top: 35px;
  405. border-top: 1px solid var(--border);
  406. }
  407. .comment-reply-item {
  408. padding: 30px 0px;
  409. border-bottom: 1px solid var(--border);
  410. }
  411. .comment-reply-item:last-child {
  412. padding-bottom: 0px;
  413. border-bottom: none;
  414. }
  415. .blog-details-form {
  416. padding: 50px;
  417. border-radius: 10px;
  418. background: var(--white);
  419. }
  420. .details-form-title {
  421. margin-bottom: 30px;
  422. text-transform: capitalize;
  423. }
  424. .form-group textarea {
  425. height: 180px;
  426. }
  427. @media (max-width: 575px) {
  428. .blog-details-content {
  429. padding: 20px;
  430. }
  431. .blog-details-title {
  432. font-size: 28px;
  433. line-height: 38px;
  434. }
  435. .blog-details-quote {
  436. padding: 75px 25px 25px;
  437. }
  438. .blog-details-quote::before {
  439. font-size: 50px;
  440. left: 25px;
  441. top: 25px;
  442. }
  443. .blog-details-quote p {
  444. font-size: 22px;
  445. }
  446. .blog-details-list {
  447. margin: 0px 15px 0px 35px;
  448. }
  449. .blog-details-footer {
  450. margin-top: 0px;
  451. padding-top: 25px;
  452. -webkit-box-orient: vertical;
  453. -webkit-box-direction: normal;
  454. -ms-flex-direction: column;
  455. flex-direction: column;
  456. }
  457. .blog-details-share {
  458. margin-bottom: 30px;
  459. }
  460. .blog-details-navigate li a {
  461. padding: 13px 13px;
  462. }
  463. .blog-details-profile {
  464. padding: 25px 15px;
  465. }
  466. .blog-details-comment {
  467. padding: 15px;
  468. }
  469. .comment-item {
  470. padding: 20px 20px;
  471. }
  472. .comment-reply {
  473. -webkit-box-orient: vertical;
  474. -webkit-box-direction: normal;
  475. -ms-flex-direction: column;
  476. flex-direction: column;
  477. }
  478. .comment-reply input {
  479. margin-right: 0px;
  480. margin-bottom: 10px;
  481. }
  482. .comment-reply-list {
  483. margin-left: 15px;
  484. }
  485. .blog-details-form {
  486. padding: 20px;
  487. }
  488. }
  489. @media (min-width: 576px) and (max-width: 767px) {
  490. .blog-details-quote {
  491. padding: 120px 60px 60px;
  492. }
  493. .blog-details-footer {
  494. -webkit-box-orient: vertical;
  495. -webkit-box-direction: normal;
  496. -ms-flex-direction: column;
  497. flex-direction: column;
  498. }
  499. .blog-details-share {
  500. margin-bottom: 30px;
  501. }
  502. .comment-reply-list {
  503. margin-left: 30px;
  504. }
  505. }