blob: 7c2adbe2d3cd3655e3d88724fd744efa212e61f4 [file] [log] [blame]
Larbi Gharibe9af9732021-03-31 15:08:01 +01001:root {
Adrien Béraudabba2e52021-04-24 21:39:56 -04002 --main-color: #1f1f1f;
Larbi Gharibe9af9732021-03-31 15:08:01 +01003 --secondary-color: white;
Adrien Béraud5e9e19b2021-04-22 01:38:53 -04004 --third-color: #8b8b8b;
Larbi Gharibe9af9732021-03-31 15:08:01 +01005 --main-text-color: #3e5869;
6 --secondary-text-color: #b0c7d6;
Adrien Béraudabba2e52021-04-24 21:39:56 -04007 --send-message-form: #f5f5f5;
Larbi Gharibe9af9732021-03-31 15:08:01 +01008}
9
Adrien Béraudabba2e52021-04-24 21:39:56 -040010html,
11body {
Larbi Gharibe9af9732021-03-31 15:08:01 +010012 height: 100%;
13 margin: 0;
14 padding: 0;
Adrien Béraudabba2e52021-04-24 21:39:56 -040015 font-family: "Open Sans", sans-serif;
Larbi Gharibe9af9732021-03-31 15:08:01 +010016 font-weight: 200;
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040017 color: #3e5869;
Larbi Gharibe9af9732021-03-31 15:08:01 +010018}
19
20#root {
21 height: 100%;
22}
23
24.app {
25 display: grid;
26 height: 100%;
Adrien Béraud150b4782021-04-21 19:40:59 -040027 grid-template-columns: 320px 1fr;
Adrien Béraud88a52442021-04-26 12:11:41 -040028 grid-template-rows: 40px 50px 1fr;
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040029 grid-template-areas:
Adrien Béraudabba2e52021-04-24 21:39:56 -040030 "h m"
31 "n m"
Adrien Béraudabba2e52021-04-24 21:39:56 -040032 "r m";
Adrien Béraud4e287b92021-04-24 16:15:56 -040033}
34
35.messenger {
36 grid-area: m;
Adrien Béraudabba2e52021-04-24 21:39:56 -040037 display: flex;
38 flex-direction: column;
Adrien Béraud0561d3c2021-05-02 11:23:54 -040039 overflow: hidden;
Adrien Béraudabba2e52021-04-24 21:39:56 -040040}
41
42.conversation-header {
43 grid-area: h;
Adrien Béraud0561d3c2021-05-02 11:23:54 -040044 display: flex;
45 align-items: center;
46 padding-right: 8px;
47
48 .title, .subtitle {
49 overflow: hidden;
50 text-overflow: ellipsis;
51 }
Adrien Béraudabba2e52021-04-24 21:39:56 -040052}
53
54.send-message-form {
55 margin: 0 16px 16px 8px;
Adrien Béraud150b4782021-04-21 19:40:59 -040056}
57
58.MuiContainer-root {
59 padding-bottom: 32px;
Larbi Gharibe9af9732021-03-31 15:08:01 +010060}
61
62.login {
63 background-color: var(--main-color);
64}
65
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040066.main-search {
Larbi Gharibe9af9732021-03-31 15:08:01 +010067 grid-area: n;
68}
69
Larbi Gharibe9af9732021-03-31 15:08:01 +010070/* REST OF CSS */
71
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040072.main-search-input {
73 padding: 8px;
74 background-color: var(--secondary-color);
75 width: 100%;
76}
77
78.rooms-list {
Adrien Béraudabba2e52021-04-24 21:39:56 -040079 grid-area: r;
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040080 overflow-y: scroll;
Adrien Béraudabba2e52021-04-24 21:39:56 -040081
82 .MuiListItemText-primary,
83 .MuiListItemText-secondary {
84 overflow: hidden;
85 text-overflow: ellipsis;
86 }
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040087}
88
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040089.list-placeholder {
90 margin: 32px auto;
91 width: 256px;
92 text-align: center;
Adrien Béraudabba2e52021-04-24 21:39:56 -040093
94 .subtitle {
95 color: #a0a0a0;
96 }
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040097}
98
Adrien Béraudabba2e52021-04-24 21:39:56 -040099.message-list {
100 flex: 1;
101 height: 100%;
102 overflow: auto;
103 display: flex;
104 flex-direction: column-reverse;
105 padding: 16px 32px;
Larbi Gharibe9af9732021-03-31 15:08:01 +0100106
Adrien Béraudabba2e52021-04-24 21:39:56 -0400107 .conversation-event {
108 margin: 8px auto;
Larbi Gharibe9af9732021-03-31 15:08:01 +0100109
Adrien Béraudabba2e52021-04-24 21:39:56 -0400110 .inline-avatar {
111 display: inline-block;
112 vertical-align: middle;
113 margin: 16px;
114 }
115 }
116
117 .message {
118 margin: 8px 0;
119
120 .message-avatar {
121 display: inline-block;
122 vertical-align: middle;
123 }
124 .message-username {
125 font-size: 11px;
126 font-weight: bold;
127 color: var(--secondary-color);
128 opacity: 0.9;
129 margin-bottom: 6px;
130 }
131 .message-text {
132 background: var(--third-color);
133 color: var(--secondary-color);
134 display: inline;
135 padding: 8px 16px;
136 border-radius: 16px;
137 margin: 8px;
138 }
139 }
Larbi Gharibe9af9732021-03-31 15:08:01 +0100140}
141
Adrien Béraud35e7d7c2021-04-13 03:28:39 -0400142.send-message-card {
143 border-radius: 8px;
144 margin: 16px;
Larbi Gharibe9af9732021-03-31 15:08:01 +0100145}
146
Larbi Gharibe9af9732021-03-31 15:08:01 +0100147.help-text {
148 position: absolute;
149 top: 10px;
150}