blob: 9b4858ea773f103b1facec8b1d7ea59f2a5ca379 (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
.weblog-image {
width: 780px;
height: 512px;
border-radius: 8px;
overflow: hidden;
margin: 0px auto;
display: block;
margin-bottom: 16px;
}
.weblog-image img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 8px;
position: relative;
top: 8px;
}
.weblog-details {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 4px;
border-bottom: 1px solid #dddddd;
}
.post-actions {
padding-top: 4px;
border-top: 1px solid #dddddd;
}
.weblog-content {
margin: 8px 0px;
}
.weblog-content img {
shape-outside: margin-box;
width: auto;
height: auto;
max-width: 350px;
max-height: 350px;
border-radius: 8px;
overflow: hidden;
object-fit: cover;
position: relative;
top: 6px;
margin-bottom: 8px;
}
.weblog-content img:nth-of-type(odd) {
float: left;
margin-right: 12px;
margin-left: 0;
}
.weblog-content img:nth-of-type(even) {
float: right;
margin-left: 12px;
margin-right: 0;
}
.weblog-content img.block {
float: none;
margin: 0px auto;
display: block;
width: 780px;
height: auto;
max-width: 100%;
max-height: 100%;
border-radius: 8px;
margin-bottom: 16px;
}
.weblog-content h1,
.weblog-content h2,
.weblog-content h3,
.weblog-content pre {
clear: both;
width: 100%;
}
.weblog-content p {
text-align: justify;
margin: 4px 0px;
font-size: 13px;
line-height: 1.5;
}
.weblog-content table {
width: 100%;
border-collapse: collapse;
margin: 8px 0;
}
.weblog-content ul,
.weblog-content ol {
margin: 8px 0;
padding: 0;
list-style-position: inside;
margin-left: 16px;
}
.weblog-content ul ul,
.weblog-content ul ol,
.weblog-content ol ul,
.weblog-content ol ol {
margin: 4px 0;
margin-left: 24px;
}
.weblog-content ul li,
.weblog-content ol li {
margin: 4px 0;
line-height: 1.5;
font-size: 13px;
}
.weblog-content pre {
white-space: pre-wrap;
word-wrap: break-word;
max-width: 780px;
overflow-x: auto;
}
.weblog-content .highlight {
width: 100%;
max-width: 780px;
}
.weblog-content .highlight pre {
padding-left: 0 !important;
padding-right: 0 !important;
}
.weblog-content code {
word-wrap: break-word;
white-space: pre-wrap;
}
|