-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.css
More file actions
97 lines (97 loc) · 1.69 KB
/
support.css
File metadata and controls
97 lines (97 loc) · 1.69 KB
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
93
94
95
96
97
.onlinechat{
position: fixed;
bottom: 0;
right: 0;
padding-right: 10px;
}
.onlinechat > button{
height: 4em;
width: 20em;
border-top-left-radius: 2em;
border-top-right-radius: 2em;
background-color: blue;
border: none;
color: white;
display: flex;
flex-direction: row;
justify-content: center;
align-content: center;
z-index: 1;
}
.onlinechat>button>div{
font-size: 2em;
color: white;
}
#supporticon{
width: auto;
height: 70%;
margin: auto;
}
#chatbox{
height: 22em;
width: 20em;
display: none;
background-color: blue;
border-top-left-radius: 2em;
border-top-right-radius: 2em;
border:none;
flex-direction: column;
}
#supportimg{
height: 3em;
width: auto;
margin: auto;
border-radius: 2em;
}
#minimize{
height: 1.5em;
width: auto;
margin: auto;
background-color: white;
border-radius: 8px;
}
#infobar{
height: 5em;
display: flex;
flex-direction: row;
justify-content: center;
align-content: center;
}
#chatarea{
height: 16em;
background-color: #f0f0f0;
border-top-left-radius: 2em;
padding: 1em;
overflow: scroll;
}
#chat_submit{
display: flex;
flex-direction: row;
height: 2em;
background-color: white;
border: 5px solid #666666;
}
#sendbutton{
background: none;
margin: auto;
border: none;
}
p9{
text-align: center;
font-size: 1.1em;
padding: 5px;
display:block;
color:white;
}
#chatinput{
padding: 0px 1em;
}
.chatmessage{
flex: 1;
text-align: center;
margin: 5px 10px;
padding: 1em;
background: white;
border-radius: 0.4em;
border: 10px 0px;
}