reader.less 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .reader-wrap {
  2. flex-direction: column;
  3. background-color: #e6e6e6;
  4. width: 100%;
  5. .reader-title {
  6. margin: 0 24px;
  7. padding: 40px 0;
  8. // border-bottom: 2px solid #ccc;
  9. justify-content: space-between;
  10. align-items: center;
  11. .title {
  12. font-weight: bolder;
  13. color: #1a1a1a;
  14. font-size: 48px;
  15. font-size: 38px;
  16. padding: 150px 0;
  17. }
  18. .add-shelf {
  19. font-size: 26px;
  20. width: 144px;
  21. height: 42px;
  22. text-align: center;
  23. border-radius: 100px;
  24. background-color: #d9d9d9;
  25. }
  26. }
  27. .reader-content {
  28. margin: 0 24px;
  29. flex-direction: column;
  30. .chapter-text {
  31. color: #1a1a1a;
  32. text-indent: 2em;
  33. font-size: 32px;
  34. margin-bottom: 30px;
  35. line-height: 60px;
  36. }
  37. }
  38. .reader-operator {
  39. margin: 50px 24px 40px;
  40. justify-content: space-between;
  41. align-items: center;
  42. text {
  43. font-size: 32px;
  44. width: 214px;
  45. height: 80px;
  46. color: #1a1a1a;
  47. background-color: #e6e6e6;
  48. border: 2px solid #666;
  49. border-radius: 6px;
  50. text-align: center;
  51. }
  52. }
  53. }
  54. .toast {
  55. position: fixed;
  56. top: 180px;
  57. width: 100%;
  58. justify-content: center;
  59. text {
  60. background-color: rgba(#1a1a1a, 0.15);
  61. padding: 60px 30px;
  62. color: #e6e6e6;
  63. font-size: 40px;
  64. justify-content: center;
  65. border-radius: 5px;
  66. }
  67. }