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
|
| .sender-behaelter {
| display: flex;
| flex-flow: column;
| }
|
| .sender {
| display: flex;
| flex-flow: row;
| padding: 0.4em;
| flex-wrap: wrap;
| background-color: #eaeaea;
| width: 100%;
| }
|
| .sender-kachel {
| display: flex;
| flex-flow: column;
| align-items: center;
| margin: 0.4em;
| padding: 0.4em;
| background-color: white;
| }
|
| .sender-name {
| font-family: RobotoCondensedBold;
| }
|
| .sender-bild {
| width: 5em;
| background-color: #ebe6e6;
| }
|
|