read.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. .read-area {
  2. background-color: #f9fafc;
  3. }
  4. .hero-area {
  5. margin-top: 50px;
  6. width: 100%;
  7. height: 400px;
  8. background-image: url(/assets/img/bg.jpg);
  9. background-position: center;
  10. background-repeat: no-repeat;
  11. background-size: cover;
  12. }
  13. .content {
  14. width: 100%;
  15. position: relative;
  16. top: -60px;
  17. padding: 5px;
  18. }
  19. .author-profile {
  20. position: relative;
  21. align-content: center;
  22. text-align: center;
  23. }
  24. .author-profile img {
  25. height: 120px;
  26. width: 120px;
  27. }
  28. .author-profile p {
  29. color: #8392a5;
  30. }
  31. .title {
  32. text-align: center;
  33. }
  34. .post-content {
  35. padding: 10px;
  36. }
  37. table {
  38. border-radius: 20px;
  39. background: #e5e9f2;
  40. border: 1px solid #c0ccda;
  41. }
  42. table tr {
  43. height: 40px !important;
  44. }
  45. table thead tr {
  46. background: #248aaa;
  47. color: #e5e9f2;
  48. }
  49. tbody tr:nth-child(odd) {
  50. background-color: #e5e9f2;
  51. }
  52. tbody tr:hover {
  53. background: #c0ccda;
  54. }
  55. figure {
  56. border: 1px solid #c0ccda;
  57. height: fit-content;
  58. width: fit-content;
  59. align-self: center;
  60. margin: auto;
  61. }
  62. img {
  63. max-width: 100%;
  64. }
  65. caption,
  66. figcaption {
  67. caption-side: bottom;
  68. text-align: center;
  69. color: #8392a5;
  70. }
  71. pre {
  72. margin: 5px;
  73. }
  74. code {
  75. padding: 10px !important;
  76. }
  77. .navbar-toggler {
  78. display: none;
  79. }
  80. .next-prev-navigator {
  81. padding-left: 10px;
  82. padding-right: 10px;
  83. }
  84. .next-prev-navigator a {
  85. color: #3c4858;
  86. transition: all 0.3s ease-out;
  87. }
  88. .next-prev-navigator a:hover {
  89. color: #2098d1;
  90. transition: all 0.3 ease-out;
  91. }
  92. .next-prev-navigator .next-article {
  93. text-align: right;
  94. }
  95. .next-prev-navigator .next-article a {
  96. transition: all 0.3s ease-out;
  97. }
  98. .next-prev-navigator .previous-article a {
  99. transition: all 0.3s ease-out;
  100. }
  101. .next-prev-navigator .btn-outline-info {
  102. color: #3c4858 !important;
  103. border-color: #e5e9f2 !important;
  104. background-color: #e5e9f2 !important;
  105. transition: all 0.3s ease-out;
  106. }
  107. .next-prev-navigator .btn-outline-info:hover {
  108. color: #f9fafc !important;
  109. background-color: #248aaa !important;
  110. transition: all 0.3s ease-out;
  111. }
  112. .disquss {
  113. padding: 10px;
  114. }
  115. @media only screen and (max-width: 768px) {
  116. .wrapper {
  117. padding-left: 0px;
  118. padding-right: 0px;
  119. overflow: hidden;
  120. }
  121. .container {
  122. max-width: 100%;
  123. }
  124. .container {
  125. padding: 10px;
  126. }
  127. }
  128. @media only screen and (max-width: 576px) {
  129. .wrapper {
  130. padding: 0px;
  131. }
  132. .hero-area {
  133. height: 200px;
  134. }
  135. .content {
  136. padding: 0px;
  137. }
  138. pre {
  139. margin: 0px;
  140. }
  141. code {
  142. padding: 0px;
  143. }
  144. .next-prev-navigator .previous-article {
  145. text-align: center;
  146. margin: 5px;
  147. }
  148. .next-prev-navigator .next-article {
  149. text-align: center;
  150. margin: 5px;
  151. }
  152. .previous-article a,
  153. .next-article a {
  154. width: 100%;
  155. }
  156. }