73 lines
1.2 KiB
CSS
73 lines
1.2 KiB
CSS
/**
|
|
* 分享
|
|
*/
|
|
.plugins-share-container, #plugins-share-layer {
|
|
display: none;
|
|
}
|
|
.plugins-share ul {
|
|
overflow: hidden;
|
|
}
|
|
.plugins-share ul li {
|
|
float: left;
|
|
width: 35px;
|
|
height: 35px;
|
|
text-align: center;
|
|
line-height: 35px;
|
|
border-radius: 50px;
|
|
margin-right: 10px;
|
|
cursor: pointer;
|
|
}
|
|
.plugins-share ul li:last-child {
|
|
margin-right: 0;
|
|
}
|
|
.plugins-share ul li .iconfont {
|
|
font-size: 20px;
|
|
color: #fff;
|
|
}
|
|
.plugins-share ul li.share-qq {
|
|
background: #03A9F4;
|
|
}
|
|
.plugins-share ul li.share-qq-space {
|
|
background: #FF9800;
|
|
}
|
|
.plugins-share ul li.share-weixin {
|
|
background: #3eab0f;
|
|
}
|
|
.plugins-share ul li.share-sian {
|
|
background: #e71f2d;
|
|
}
|
|
.plugins-share ul li.share-url {
|
|
background: #607d8b;
|
|
}
|
|
|
|
|
|
/**
|
|
* 微信二维码
|
|
*/
|
|
#plugins-share-weixin-modal .weixin-qrcode {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
/**
|
|
* 弹层
|
|
*/
|
|
#plugins-share-layer {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
z-index: 10000;
|
|
text-align: center;
|
|
}
|
|
#plugins-share-layer img {
|
|
max-width: 90%;
|
|
}
|
|
|
|
/**
|
|
* 复制
|
|
*/
|
|
#plugins-share-copy-modal .am-input-group {
|
|
margin-top: 10px;
|
|
} |