1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- .list-item{
- background-color: #fff;
- padding: 10px;
- margin-bottom: 10px;
- border: 1px solid #e1e1e1;
- border-radius: 5px;
- position: relative;
- }
- .list-item:last-child{margin-bottom: 0px;}
- .list-item.active{
- border-color: #17b3ec;
- }
- .list-item .line{
- padding: 2px 0;
- }
- .radio-div{
- position: absolute;
- top: 10px;
- right: 10px;
- }
- .icon-checkbox{
- position: relative;
- -webkit-appearance: none;
- }
- .icon-checkbox[type=radio]:before{
- content: '\e411';
- font-family: Muiicons;
- font-size: 28px;
- font-weight: 400;
- line-height: 1;
- text-decoration: none;
- color: #e1e1e1;
- border-radius: 0;
- background: 0 0;
- -webkit-font-smoothing: antialiased;
- }
- .icon-checkbox[type=radio]:checked:before{
- content: '\e442';
- color: #17B3EC;
- }
- .fa-circle{
- margin-right: 10px;
- }
- .add-btn{
- position: fixed;
- right: 15px;
- bottom: 90px;
- z-index: 2;
- }
- .footer{
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- z-index: 2;
- }
- .c-btn-blue{
- background-color: #17b3ec;
- border-radius: 5px;
- }
- .bottom-title{font-size: 14px;color: #666;height: 30px;line-height: 30px;}
- .noword{font-size: 16px;color: #333;margin-top: 10px;text-align: center;}
|