style.scss 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  1. /* 共通樣式 */
  2. :root {
  3. --main-color: #000;
  4. --sub-color: #e47140;
  5. --gray-color: #727272;
  6. }
  7. * {
  8. letter-spacing: 1px;
  9. font-weight: 300;
  10. font-family: "Noto Sans TC", sans-serif !important;
  11. }
  12. p,
  13. li {
  14. line-height: 32px;
  15. }
  16. ul {
  17. list-style: none;
  18. }
  19. img {
  20. width: 100%;
  21. height: auto;
  22. }
  23. html,
  24. body {
  25. height: 100%;
  26. margin: 0;
  27. }
  28. body {
  29. display: flex;
  30. flex-direction: column;
  31. overflow-y: scroll;
  32. }
  33. .btn:focus,
  34. .form-control:focus {
  35. border-color: var(--main-color) !important;
  36. box-shadow: none !important;
  37. outline: 0 none !important;
  38. }
  39. .badge {
  40. font-weight: 400 !important;
  41. }
  42. .navbar {
  43. background-color: var(--main-color) !important;
  44. .navbar-collapse {
  45. flex-grow: 0;
  46. }
  47. .navbar-brand {
  48. font-size: 50px;
  49. font-weight: 500;
  50. font-family: "Roboto Slab", serif !important;
  51. color: var(--sub-color);
  52. transition: all 0.3s;
  53. &:hover {
  54. opacity: 0.9;
  55. color: var(--sub-color);
  56. }
  57. }
  58. }
  59. .blog-post-tags {
  60. .badge {
  61. background-color: var(--main-color);
  62. &:hover {
  63. color: var(--main-color);
  64. background-color: #fff;
  65. border: 1px solid var(--main-color);
  66. }
  67. }
  68. }
  69. .blog-post-title {
  70. margin: 10px 0 20px;
  71. a {
  72. font-size: 50px;
  73. font-weight: 600;
  74. @media (max-width: 991px) {
  75. font-size: 36px;
  76. }
  77. }
  78. }
  79. .pagination {
  80. justify-content: center;
  81. .page-link {
  82. color: var(--main-color);
  83. }
  84. .page-item.active .page-link {
  85. z-index: 3;
  86. color: #fff;
  87. background-color: var(--main-color);
  88. border-color: var(--main-color);
  89. }
  90. }
  91. .post-title {
  92. line-height: 30px;
  93. a {
  94. color: #000;
  95. text-decoration: none;
  96. font-size: 22px;
  97. font-weight: 500;
  98. }
  99. }
  100. .post-block-title {
  101. margin-bottom: 20px;
  102. position: relative;
  103. font-size: 22px;
  104. &::after {
  105. position: absolute;
  106. z-index: -10;
  107. top: 15px;
  108. left: 0;
  109. width: 100%;
  110. height: 0px;
  111. content: "";
  112. border-bottom: 1px solid #929292;
  113. bottom: 5px;
  114. }
  115. span {
  116. font-weight: 500;
  117. background: #fff;
  118. }
  119. }
  120. .news-info {
  121. margin-top: 10px;
  122. line-height: 20px;
  123. a {
  124. font-size: 14px;
  125. font-weight: 500;
  126. color: var(--gray-color);
  127. text-decoration: none;
  128. transition: all 0.3s;
  129. &:hover {
  130. opacity: 0.8;
  131. }
  132. }
  133. small {
  134. color: var(--gray-color);
  135. }
  136. }
  137. .news-thumbnail {
  138. height: 100%;
  139. object-fit: cover;
  140. }
  141. // 文字省略
  142. .line-clamp {
  143. max-width: 150px;
  144. display: -webkit-box;
  145. -webkit-line-clamp: 2;
  146. -webkit-box-orient: vertical;
  147. overflow: hidden;
  148. text-overflow: ellipsis;
  149. }
  150. .post-depiction {
  151. // max-width: 350px;
  152. margin: 10px 0;
  153. display: -webkit-box;
  154. -webkit-line-clamp: 2;
  155. -webkit-box-orient: vertical;
  156. overflow: hidden;
  157. text-overflow: ellipsis;
  158. line-height: 26px;
  159. a {
  160. color: #7a7a7a;
  161. text-decoration: none;
  162. }
  163. }
  164. .top-btn {
  165. position: fixed;
  166. bottom: 15px;
  167. right: 15px;
  168. z-index: 10;
  169. opacity: 0; // scrollTop = 0
  170. transition: all .5s;
  171. button {
  172. border: none;
  173. background: var(--sub-color);
  174. border-radius: 100px;
  175. width: 55px;
  176. height: 55px;
  177. }
  178. }
  179. .show {
  180. opacity: 1; // scrollTop > 100
  181. }
  182. /* sidebar.html Start */
  183. .news-sidebar {
  184. position: sticky;
  185. top: 15px;
  186. .news-featured {
  187. position: unset;
  188. }
  189. }
  190. .search-btn {
  191. border: 1px solid var(--main-color) !important;
  192. svg {
  193. color: var(--main-color);
  194. }
  195. &:hover {
  196. background-color: var(--main-color) !important;
  197. svg {
  198. color: #fff;
  199. }
  200. }
  201. }
  202. .tags {
  203. margin: 0 5px 5px 0;
  204. padding: 7px 10px !important;
  205. font-size: 14px !important;
  206. font-weight: 400 !important;
  207. color: var(--main-color) !important;
  208. border: 1px solid var(--main-color) !important;
  209. &:hover {
  210. color: #fff !important;
  211. background-color: var(--main-color);
  212. }
  213. }
  214. /* sidebar.html End */
  215. /* single.html Start */
  216. .blog-post.content {
  217. h2 {
  218. line-height: 46px;
  219. }
  220. h4 {
  221. font-size: 16px;
  222. font-weight: 300;
  223. line-height: 32px;
  224. a {
  225. padding: 5px 8px;
  226. margin-right: 3px;
  227. border: 1px solid #000;
  228. border-radius: 5px;
  229. font-size: 14px;
  230. &:hover {
  231. color: #fff !important;
  232. }
  233. }
  234. }
  235. .back-link {
  236. color: #000;
  237. display: block;
  238. text-align: center;
  239. text-decoration: none;
  240. transition: all 0.3s;
  241. &:hover {
  242. opacity: 0.7;
  243. }
  244. }
  245. }
  246. /* single.html End */
  247. /* content.html Start */
  248. .news-main {
  249. height: 100%;
  250. overflow: hidden;
  251. @media (max-width: 991px) {
  252. display: flex;
  253. flex-direction: column-reverse;
  254. margin-top: 8px;
  255. }
  256. .post-title {
  257. line-height: 46px;
  258. @media (max-width: 991px) {
  259. line-height: 30px;
  260. }
  261. a {
  262. font-size: 34px;
  263. @media (max-width: 991px) {
  264. font-size: 22px;
  265. }
  266. }
  267. }
  268. img {
  269. height: 100%;
  270. object-fit: cover;
  271. }
  272. .news-info {
  273. a {
  274. font-size: 16px;
  275. }
  276. }
  277. }
  278. /* content.html End */
  279. /* focus.html Start */
  280. .focus-content {
  281. position: sticky;
  282. top: 20px;
  283. }
  284. /* focus.html End */
  285. /* recent.html Start */
  286. .recent-content {
  287. .news-list {
  288. margin: 0;
  289. li {
  290. margin: 15px 0;
  291. img {
  292. width: 140px;
  293. height: 105px;
  294. object-fit: cover;
  295. }
  296. small {
  297. display: block;
  298. }
  299. .news-info {
  300. margin-top: 0px;
  301. }
  302. }
  303. li:last-child {
  304. margin: 0;
  305. }
  306. }
  307. }
  308. /* recent.html End */
  309. /* news-tab.html Start */
  310. .tab-category {
  311. .nav-link {
  312. color: var(--main-color);
  313. font-weight: 500;
  314. }
  315. .nav-pills .nav-link.active,
  316. .nav-pills .show>.nav-link {
  317. color: var(--sub-color);
  318. background-color: var(--main-color);
  319. }
  320. }
  321. .tab-content {
  322. .bg-img {
  323. position: relative;
  324. height: 370px;
  325. // 設置背景混和模式為相乘模式
  326. background-blend-mode: multiply;
  327. background-size: cover;
  328. background-position: center center;
  329. cursor: pointer;
  330. section {
  331. padding: 10px 25px;
  332. position: absolute;
  333. bottom: 0;
  334. color: #fff;
  335. a {
  336. color: #fff;
  337. text-decoration: none;
  338. }
  339. small {
  340. font-size: 12px;
  341. }
  342. }
  343. }
  344. }
  345. /* news-tab.html End */
  346. /* news-all.html Start */
  347. .news-all {
  348. img {
  349. object-fit: cover;
  350. max-height: 300px;
  351. }
  352. .post-title {
  353. margin: 5px auto;
  354. line-height: 46px;
  355. @media (max-width: 767px) {
  356. line-height: 40px;
  357. }
  358. a {
  359. font-size: 28px;
  360. @media (max-width: 767px) {
  361. font-size: 26px;
  362. }
  363. }
  364. }
  365. .news-info {
  366. a {
  367. font-size: 18px;
  368. }
  369. }
  370. hr {
  371. margin: 1.5rem 0;
  372. }
  373. .first-img {
  374. max-height: 50vh;
  375. object-fit: cover;
  376. }
  377. .line {
  378. padding: 0 12px;
  379. }
  380. }
  381. /* news-all.html End */
  382. /* news-featured.html Start */
  383. .news-featured {
  384. position: sticky;
  385. top: 20px;
  386. }
  387. .news-featured,
  388. .focus-content {
  389. img {
  390. object-fit: cover;
  391. @media (max-width: 991px) {
  392. height: 370px;
  393. }
  394. @media (max-width: 767px) {
  395. height: 300px;
  396. }
  397. }
  398. }
  399. /* news-featured.html End */