aboutsummaryrefslogtreecommitdiff
path: root/assets/css/app.css
blob: 1650646fdf260fb147449438b1b592c7c90bb2ca (plain) (blame)
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
/* This file is for your main application css. */

@import "./milligram.css";

body {
  background-color: #dddddd;
}

.container {
  margin: 0 auto;
  max-width: 90.0rem;
  padding: 0 1.0rem;
  position: relative;
  width: 100%;
}

.parties {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.party-peek {
  flex: 0 0 50%;
  text-align: center;
  padding: 16px 40px 12px 40px;
}
.party-peek figure {
  margin: 0;
}

.avatar {
  border-radius: 50%;
}
.avatar--big {
  max-height: 140px;
}
.avatar--tiny {
  max-height: 42px;
}

.row {
  margin-top: 6px;
  display: flex;
  align-items: center;
}
.row--padded {
  margin-top: 12px;
}
.row-left {
  flex-direction: row;
}
.row-right {
  flex-direction: row-reverse;
}

.date-box {
  background-color: #666;
  color: white;
  padding: 4px 12px 4px 12px;
  border-radius: 12px;
  box-shadow: 1px 1px 2px grey;
}

.white-box {
  background-color: white;
  border-radius: 5px;
  box-shadow: 1px 1px 2px grey;
}

/* Message box */
.message {
  padding: 0px !important;
  margin: 0 10px 0 10px;
  max-width: 65%;
}

.message-photo {
  border-radius: 5px 5px 0 0;
  max-height: 600px;
}

.message-box {
  padding: 0 10px 0 10px;
  margin-top: 5px;
  overflow-wrap: break-word;
}

.message-date {
  text-align: right;
  color: grey;
  font-size: 12px;
}