mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 09:06:46 +08:00
45 lines
643 B
CSS
45 lines
643 B
CSS
.qbBuilder {
|
|
margin-left: 50px;
|
|
}
|
|
|
|
.qbItemIconList {
|
|
padding: 0;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.qbItemIcon {
|
|
background: #F0F0F0;
|
|
width: 45px;
|
|
height: 45px;
|
|
font-size: 24px;
|
|
text-align: center;
|
|
line-height: 45px;
|
|
color: #252525;
|
|
border-radius: 3px;
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
margin-right: 10px;
|
|
position: relative;
|
|
border: solid 2px #F0F0F0;
|
|
transition: border 0.3s cubic-bezier(.4,0,.2,1);
|
|
}
|
|
|
|
.qbItemIcon:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.qbItemIconActive {
|
|
border: solid 2px #00796B;
|
|
}
|
|
|
|
.defaultIcon {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.qb {
|
|
margin: 10px 0;
|
|
} |