_blog.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* Blog Section Start */
  2. .blog-item-wrapper{
  3. box-shadow: 0px 1px 4px rgb(221, 221, 221);
  4. .blog-item-text{
  5. padding: 20px;
  6. h3{
  7. a{
  8. color: $title-color;
  9. font-size: 18px;
  10. }
  11. a:hover{
  12. color: $preset;
  13. }
  14. }
  15. .meta-tags{
  16. font-size: 12px;
  17. .comments{
  18. a{
  19. color: $text-color;
  20. font-size: 12px;
  21. }
  22. a:hover{
  23. color: $preset;
  24. }
  25. }
  26. }
  27. }
  28. }
  29. .blog-block{
  30. box-shadow: 0px 1px 4px rgb(221, 221, 221);
  31. .blog-content{
  32. padding: 15px;
  33. h3{
  34. font-size: 18px;
  35. a{
  36. color: $title-color;
  37. }
  38. a:hover{
  39. color: $preset;
  40. }
  41. }
  42. }
  43. }
  44. .blog-post{
  45. padding: 30px;
  46. h3{
  47. font-size: 18px;
  48. a{
  49. color: $title-color;
  50. }
  51. a:hover{
  52. color: $preset;
  53. }
  54. }
  55. }
  56. .about-sidebar-widget,
  57. .categories-sidebar-widget,
  58. .blog-posts-widget{
  59. padding: 15px;
  60. h4{
  61. color: #222;
  62. padding: 10px 0;
  63. font-size: 20px;
  64. }
  65. p{
  66. color: #444;
  67. }
  68. }
  69. .about-sidebar-widget{
  70. img{
  71. margin-bottom: 10px;
  72. }
  73. }
  74. .categories-sidebar-widget{
  75. .post-category{
  76. border-bottom: 1px solid #EFEFEF;
  77. padding: 3px 0px;
  78. a{
  79. color: #999;
  80. font-size: 14px;
  81. font-weight: 400;
  82. line-height: 32px;
  83. }
  84. }
  85. .post-category:last-child{
  86. border: none;
  87. }
  88. }
  89. .blog-post-small{
  90. margin-bottom: 15px;
  91. border-bottom: 1px solid #EFEFEF;
  92. img{
  93. max-width: 66px;
  94. margin: 0 10px 0 0;
  95. float: left;
  96. }
  97. a{
  98. color: #999;
  99. font-size: 14px;
  100. }
  101. p{
  102. font-size: 12px;
  103. }
  104. .post-date{
  105. font-size: 12px;
  106. }
  107. }
  108. .blog-post-small:last-child{
  109. border: none;
  110. }