blob: bb4d653860e32d408be22e270288d99eb6be6caf (
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
|
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: lightgray;
/* font-size: 15px; */
display: flex;
justify-content:center;
}
h1 {
font-family: "Jacquard 12";
font-size: 50px;
margin-top: 20px;
margin-bottom: 20px;
}
.upload {
display: flex;
justify-content:center;
flex-direction: column;
}
#uploadlink {
text-decoration: none;
color: black;
}
.imgcontainer {
width: 100%;
padding-top: 100%;
position: relative;
}
#container {
max-width: 600px;
width: 100%;
display: flex;
flex-direction: column;
align-items:center;
}
#posts {
width: 100%;
}
img{
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
height: 100%;
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: 5px;
word-wrap:break-word;
align-items: center;
}
|