blob: 1abdc8e31b951a0416d70449491ef8c9a56e2a82 (
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
|
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: lightgray;
/* font-size: 15px; */
display: flex;
justify-content:center;
}
#container {
max-width: 600px;
width: 100%;
display: flex;
flex-direction: column;
align-items:center;
}
img{
width:100%;
}
.description {
flex:1;
}
.date {
font-weight: 600;
}
.summary{
display: flex;
justify-content: center;
flex-direction: row;
align-items: start;
width: 100%;
}
.post {
display: flex;
flex-direction: column;
padding-top: 40px;
padding-left: 10px;
padding-right: 10px;
justify-content: center;
gap: 20px;
word-wrap:break-word;
align-items: center;
}
|