You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
135 lines
2.9 KiB
CSS
135 lines
2.9 KiB
CSS
@CHARSET "UTF-8";
|
|
body {
|
|
padding: 0;
|
|
margin: 30px auto;
|
|
width: 100%;
|
|
font: 1em/1.4 맑은고딕, Cambria, Georgia, sans-serif;
|
|
color: #333;
|
|
background: #fff;
|
|
}
|
|
|
|
p {
|
|
margin: 1em 0;
|
|
}
|
|
|
|
input[type='text']{
|
|
width: 90%;
|
|
height: 20px;
|
|
padding: 6px 12px;
|
|
font-size: 12px;
|
|
line-height: 1.42857143;
|
|
color: #555555;
|
|
background-color: #ffffff;
|
|
background-image: none;
|
|
border: 1px solid #cccccc;
|
|
border-radius: 4px;
|
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
}
|
|
|
|
|
|
div.sttInput {
|
|
width: 90%;
|
|
height: 20px;
|
|
margin-top: 20px;
|
|
background-color: #ffffff;
|
|
border: 1px solid #ccc;
|
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
display: inline-block;
|
|
padding: 6px 12px;
|
|
color: #555;
|
|
vertical-align: middle;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
button {
|
|
background-color: transparent;
|
|
padding: 0;
|
|
vertical-align: middle;
|
|
border: 1px solid transparent;
|
|
white-space: nowrap;
|
|
font-size: 14px;
|
|
line-height: 1.42857143;
|
|
border-radius: 4px;
|
|
font-weight: normal;
|
|
text-align: center;
|
|
touch-action: manipulation;
|
|
cursor: pointer;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
#chatwindow {
|
|
position: relative;
|
|
height: 100%;
|
|
padding-bottom: 100px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#chat-content {
|
|
width: 100%;
|
|
height: 600px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#chat-inquiry {
|
|
position: relative;background:#fafafa;border-top:5px solid #ddd;padding:0px 30px;height:74px; border-radius: 0px 0px 15px 15px;
|
|
}
|
|
|
|
.voiceChat {
|
|
float: right;
|
|
margin-top: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
/* Variant : for left positioned triangle */
|
|
.triangle-border.left {
|
|
max-width:60%;font-family: 'NotoSansCJKkr-Regular';background:#fff;color:#333333;padding:19px 24px;border-radius:10px;display:inline-block;vertical-align: middle;text-align:left;font-size:14px;line-height:25px;font-weight:500;box-shadow: 5px 5px 5px #dad7d7;
|
|
}
|
|
|
|
/* Variant : for right positioned triangle */
|
|
.triangle-border.right {
|
|
max-width:60%;font-family: 'NotoSansCJKkr-Regular';background:#e7514c;color:#fff;padding:19px 24px;border-radius:10px;display:inline-block;vertical-align: middle;text-align:left;font-size:14px;line-height:25px;font-weight:500;box-shadow: 5px 5px 5px #dad7d7;
|
|
}
|
|
|
|
/* Variant : left */
|
|
|
|
/* 시간 & 프로필 */
|
|
.text-wrap {
|
|
position: relative;
|
|
padding: 10px 20px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.text-wrap.left {
|
|
text-align:left;margin-bottom:4px;
|
|
}
|
|
|
|
.text-wrap.right {
|
|
text-align:right;
|
|
}
|
|
|
|
.admin_icon {display:inline-block;vertical-align: middle;margin-right:21px;}
|
|
|
|
.user_icon {display:inline-block;vertical-align: middle;margin-left:25px;}
|
|
|
|
.time {
|
|
position: absolute;
|
|
bottom: 16px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.profile {
|
|
display: inline-block;
|
|
width: 70px;
|
|
height: 70px;
|
|
border-radius: 50%;
|
|
background: #efefef;
|
|
text-align: center;
|
|
left: 10px;
|
|
top: 10px;
|
|
position: absolute;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.message-icon {position:absolute;left:30px;top:25px;}
|