react-cqtoolbox
Version:
[![Travis][build-badge]][build] [![npm package][npm-badge]][npm] [![Coveralls][coveralls-badge]][coveralls]
87 lines (73 loc) • 1.48 kB
CSS
.section {
padding: 15px;
border-radius: 2px;
background-color: rgb(255, 255, 255);
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.content {
}
.content.center {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin: 30px 0;
}
.title {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid #f1f1f1;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.titleInner {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.titleInner > .tip {
width: 4px;
margin-right: 6px;
background-color: rgb(0, 188, 212);
}
.titleInner > h2 {
margin: 0;
color: #334e69;
}
.titleInner.normal {
}
.titleInner.normal > h2 {
font-size: 18px;
}
.titleInner.normal > .tip {
height: 18px;
}
.titleInner.small {
}
.titleInner.small > h2 {
font-size: 15px;
}
.titleInner.small > .tip {
height: 15px;
}
.nullText {
font-size: 18px;
color: rgb(117, 117, 117);
text-align: center;
}