summaryrefslogtreecommitdiff
path: root/clams-server/src/main/resources/public/css/post.css
blob: 0c8391c954bdf5cf36b028af00136e8b8066e36f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* post.css - specific styles for blog posts */

.post-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    font-size: 0.9rem;
    opacity: 0.7;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.post-content {
    line-height: 1.8;
    margin-bottom: 80px;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-image {
    margin: 40px 0;
    text-align: center;
}

.post-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.post-image figcaption {
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px dashed var(--border-color);
}

.prev-post, .next-post {
    font-size: 1rem;
    text-decoration: none;
}

.prev-post:hover, .next-post:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .post-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}