-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.css
37 lines (37 loc) · 805 Bytes
/
input.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
/* style user input field */
.bubble-container .input-wrap {
position: absolute;
bottom: 0;
left: 0;
right: 0;
font-family: "Helvetica Neue", Helvetica, sans-serif;
color: #1C4684;
}
.bubble-container .input-wrap textarea {
width: calc(100% - 20px);
font-family: "Helvetica Neue", Helvetica, sans-serif;
color: #2c2c2c;
background: rgba(250, 250, 250, 0.95);
font-size: 1em;
letter-spacing: .5px;
font-weight: 400;
margin: 10px;
border-radius: 15px;
border: none;
padding: 10px 15px;
outline: none;
box-shadow: 0 0 0 1px #d0d0d0 inset;
line-height: 1.25em;
}
.bubble.reply-freeform {
margin: 0;
}
.bubble.reply.reply-freeform.say .bubble-content .bubble-button {
margin-top: 1px;
text-align: left;
}
.bubble.reply.say.bubble-hidden {
margin: 0;
transform: scale(0);
height: 0;
}