123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- * {
- letter-spacing: 1px;
- font-family: Noto Sans TC, sans-serif;
- }
- /* List */
- .list {
- // max-width: 720px;
- margin: auto;
- .item {
- display: flex;
- align-items: flex-start;
- margin-bottom: 16px;
- border-bottom: 1px solid #ededed;
- }
- .row {
- display: flex;
- align-items: center;
- width: 100%;
- }
- .cover {
- display: block;
- height: 160px;
- img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- border-radius: 5px;
- }
- }
- .content {
- margin-left: 16px;
- }
- .title {
- font-size: 22px;
- font-weight: bold;
- color: #254B70;
- text-decoration: none;
- transition: all .2s;
- &:hover {
- opacity: .7;
- }
- }
- .summary {
- margin: 8px 0 0;
- color: #555;
- font-size: 14px;
- }
- }
- /* Single */
- .post-content {
- max-width: 800px;
- width: 100%;
- margin: 0 auto;
- padding: 20px;
- line-height: 1.7;
- font-size: 18px;
- letter-spacing: 0.5px;
- color: #333333;
- text-align: justify;
- .post-title {
- font-size: 32px;
- font-weight: bold;
- margin-bottom: 20px;
- color: #1E2939;
- }
- .post-date {
- font-size: 14px;
- color: #888888;
- margin-bottom: 30px;
- }
- .post-cover {
- width: 100%;
- height: auto;
- border-radius: 8px;
- margin-bottom: 30px;
- }
- .back-link {
- display: block;
- margin-top: 100px;
- color: #1E2939;
- text-decoration: none;
- text-align: center;
- transition: all .2s;
- &:hover {
- color: #1E2939;
- opacity: .7;
- }
- }
- }
|