12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- @charset "utf-8";
- #machine {
- .tip {
- background: #7660A4;
- color: #fff;
- line-height: 36px;
- font-size: 12px;
- }
- .list {
- padding: 0 15px;
- .log-title {
- padding: 10px 0;
- color: #A7A7B7;
- font-size: 12px;
- }
- .item {
- border-bottom: 1px solid #eee;
- position: relative;
- padding-top: 5px;
- padding-bottom: 10px;
- .title {
- font-size: 14px;
- color: #303036;
- margin-bottom: 10px;
- .date {
- float: right;
- color: #686872;
- font-size: 12px;
- }
- }
- .desc {
- font-size: 12px;
- color: #686872;
- margin-bottom: 15px;
- }
- }
- }
- .empty {
- position: fixed;
- top: 40%;
- text-align: center;
- color: #999999;
- width: 100%;
- .text {
- margin-bottom: 20px;
- }
- }
- .fixed {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- }
- }
|