2019-11-11 06:53:39 +00:00
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
color: #333;
|
|
|
|
font-family: '나눔고딕', Malgun Gothic, '맑은고딕', Arial, Dotum, '돋움',
|
|
|
|
Gulim, '굴림';
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 18px !important;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
body * {
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
ul,
|
|
|
|
ol {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
a:link,
|
|
|
|
a:visited,
|
|
|
|
a:hover,
|
|
|
|
a:active {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noti_messege {
|
|
|
|
width: 340px;
|
|
|
|
height: 100px;
|
|
|
|
border: 1px solid #666;
|
|
|
|
background-color: #fff;
|
|
|
|
box-shadow: 0px 0px 3px 0px #e7e7e7;
|
|
|
|
}
|
|
|
|
.info {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 16px 14px;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.btn_close {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
right: 6px;
|
|
|
|
top: 6px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2019-12-13 04:45:08 +00:00
|
|
|
background: url(../images/btn_close_gray.png) no-repeat 50% 50%;
|
2019-11-11 06:53:39 +00:00
|
|
|
}
|
|
|
|
.btn_close:hover {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
.photo {
|
|
|
|
position: relative;
|
|
|
|
top: 0px;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
margin: 4px 0;
|
|
|
|
width: 54px;
|
|
|
|
height: 54px;
|
|
|
|
border-radius: 50%;
|
2019-12-13 04:45:08 +00:00
|
|
|
background: #5bc1ff url(../images/img_nophoto_50.png) no-repeat 50% 50%;
|
2019-11-11 06:53:39 +00:00
|
|
|
border: 2px solid #ddd;
|
|
|
|
}
|
|
|
|
.info .profile {
|
|
|
|
position: absolute;
|
|
|
|
width: 60px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.photo img {
|
|
|
|
overflow: hidden;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
border-radius: 50px;
|
|
|
|
}
|
|
|
|
.noti_messege .info .profile + div {
|
|
|
|
padding-left: 70px;
|
|
|
|
position: relative;
|
|
|
|
line-height: 180%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.sender {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
color: #333;
|
|
|
|
width: 94%;
|
|
|
|
}
|
|
|
|
.sender .name {
|
|
|
|
color: #2e7fb5;
|
|
|
|
}
|
|
|
|
.message {
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
.ellipsis {
|
|
|
|
display: block;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
word-wrap: normal;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.ellipsis_row2 {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
word-wrap: break-word;
|
|
|
|
line-height: 1.6em;
|
|
|
|
height: 3.2em;
|
|
|
|
}
|