-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
121 lines (104 loc) · 2.15 KB
/
index.css
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
html,body,.root {
display: flex;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
justify-content: center;
flex-direction: column;
align-items: center;
background-color: gainsboro;
}
.content {
box-sizing: border-box;
background-color: white;
height: 500px;
display: flex;
width: 100%;
justify-content: end;
flex-direction: column;
padding: 30px;
}
.content .common-words {
position: relative;
flex-direction: row;
display: flex;
font-size: 12px;
}
.content .common-words-manager-btn {
background-color: #ecf5ff;
color: #409EFF;
display: inline-block;
border: 1px solid #d9ecff;
border-radius: 2px;
font-size: 12px;
min-width: 80px;
min-height: 30px;
}
.content .common-words-manager-btn:hover {
cursor: pointer;
}
.content .chat-input {
margin-top: 10px;
width: 100%;
height: 80px;
border: 1px solid gainsboro;
border-radius: 5px;
outline: none;
}
.common-words-manager {
display: flex;
}
.common-words-create {
display: flex;
}
.common-words-create span {
display: flex;
align-items: center;
color: #409EFF;
}
.common-words-create span:first-child {
margin-left: 5px;
}
.common-words-create span:last-child {
margin-right: 5px;
}
.common-words-create input {
border: 1px solid gainsboro;
border-radius: 5px;
outline: none;
}
.common-words-list {
font-size: 12px;
max-width: 150px;
background-color: rgb(249, 250, 250);
border: rgb(249, 250, 250) solid 1px;
box-shadow: 0px 2px 2px rgb(249, 250, 250);
border-radius: 3px;
padding: 5px;
position: absolute;
top: -85px;
}
.common-words-list .list-header {
color: rgb(173, 172, 172);
}
.common-words-list .list-footer {
color: rgb(173, 172, 172);
font-size: 8px;
-webkit-transform-origin-x: 0;
-webkit-transform: scale(0.80);
}
.common-words-list > ol {
padding-left: 5px;
}
.common-words-list > ol > li {
list-style-type: none;
padding-left: 3px;
padding-top: 3px;
min-height: 20px;
}
.list-item-selected {
background-color: #70b2f5;
border-radius: 3px;
color: white;
}