blob: 07982bb1ad4f67c5ec48868a570810daef4fdecd (
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
64
65
66
67
68
|
/* Journal View — Default header styles (inside shadow DOM) */
.journal-view-header {
margin-bottom: 24px;
}
.journal-view-header-content {
padding: 0;
}
.journal-view-title {
font-size: 28px;
font-weight: 600;
color: #ffffff;
margin: 0 0 6px 0;
}
.journal-view-subtitle {
color: #b0b0b0;
margin: 0;
font-size: 14px;
opacity: 0.8;
}
/* Journal Owner */
.journal-owner {
display: flex;
align-items: center;
gap: 14px;
padding: 14px 16px;
margin-bottom: 20px;
background: rgba(150, 181, 255, 0.06);
border: 1px solid rgba(150, 181, 255, 0.12);
border-radius: 10px;
}
.journal-owner-avatar {
border-radius: 50%;
flex-shrink: 0;
border: 2px solid rgba(150, 181, 255, 0.25);
}
.journal-owner-info {
min-width: 0;
}
.journal-owner-name {
color: #96b5ff;
font-size: 14px;
font-weight: 600;
text-decoration: none;
}
.journal-owner-name:hover {
text-decoration: underline;
}
.journal-owner-handle {
color: #6a7a9b;
font-size: 12px;
margin-left: 6px;
}
.journal-owner-bio {
color: #b0b0b0;
font-size: 13px;
margin: 4px 0 0 0;
line-height: 1.5;
}
|