index.less 936 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. @charset "utf-8";
  2. #machine {
  3. .tip {
  4. background: #7660A4;
  5. color: #fff;
  6. line-height: 36px;
  7. font-size: 12px;
  8. }
  9. .list {
  10. padding: 0 15px;
  11. .log-title {
  12. padding: 10px 0;
  13. color: #A7A7B7;
  14. font-size: 12px;
  15. }
  16. .item {
  17. border-bottom: 1px solid #eee;
  18. position: relative;
  19. padding-top: 5px;
  20. padding-bottom: 10px;
  21. .title {
  22. font-size: 14px;
  23. color: #303036;
  24. margin-bottom: 10px;
  25. .date {
  26. float: right;
  27. color: #686872;
  28. font-size: 12px;
  29. }
  30. }
  31. .desc {
  32. font-size: 12px;
  33. color: #686872;
  34. margin-bottom: 15px;
  35. }
  36. }
  37. }
  38. .empty {
  39. position: fixed;
  40. top: 40%;
  41. text-align: center;
  42. color: #999999;
  43. width: 100%;
  44. .text {
  45. margin-bottom: 20px;
  46. }
  47. }
  48. .fixed {
  49. position: fixed;
  50. bottom: 0;
  51. left: 0;
  52. right: 0;
  53. }
  54. }