source: PerfectFit/Web/src/main/webapp/css/chat.css@ 7

Last change on this file since 7 was 7, checked in by Wouter Pasman, 10 months ago

#124 release PerfectFit sources

File size: 1.7 KB
Line 
1
2body {
3 height: 100%;
4 width:100%;
5 font-family: Arial, Helvetica, sans-serif;
6 background: white;
7/* background: linear-gradient(to right, #57c1eb 0%,#246fa8 100%);*/
8 font-size: 18px;}
9
10/* in chat-area we have 1 div element per row in strict grid.*/
11.chat-area {
12 display: grid;
13 grid-template-columns: auto
14}
15
16
17
18.bot-chat-balloon {
19 padding-top:10px;
20 padding-bottom:10px;
21 padding-left:15px;
22 padding-right:15px;
23 background: #EEE;
24 border-radius: 15px;
25 color: black;
26 margin-top: 10px;
27 margin-bottom: 10px;
28 margin-right: auto;
29 margin-left: 8px;
30 width:fit-content;
31 max-width:80%;
32 height:auto;
33 }
34
35.user-chat-balloon {
36
37 padding-top:10px;
38 padding-bottom:10px;
39 padding-left:15px;
40 padding-right:15px;
41 background: #04C;
42 border-radius: 15px;
43 color: white;
44 margin-top: 10px;
45 margin-bottom: 10px;
46 margin-right: 10px;
47 margin-left: auto;
48 width:fit-content;
49 max-width:80%;
50 }
51
52.responsearea {
53 display: grid;
54 grid-template-columns: auto;
55
56}
57
58.choicebutton {
59 padding-top:10px;
60 padding-bottom:10px;
61 padding-left:15px;
62 padding-right:15px;
63 float:left;
64 position: inline-block;
65 background: #04C;
66 border-radius: 15px;
67 color: white;
68 width:fit-content;
69}
70
71.textarea {
72 width: 100%;
73}
74
75
76.buttonarea {
77 width: 100%;
78}
79
80/* used to auto scale text width */
81.boxsizingBorder {
82 -webkit-box-sizing: border-box;
83 -moz-box-sizing: border-box;
84 box-sizing: border-box;
85}
86.textautosize {
87 width:90%;
88 border: 0px ;
89 box-sizing: border-box;
90}
91
92#sendbutton {
93 width:20px;
94 border: none;
95 background: none;
96}
Note: See TracBrowser for help on using the repository browser.