style.less 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .workbench {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. &-top {
  7. margin-bottom: 20px;
  8. display: flex;
  9. &-style {
  10. width: 100%;
  11. height: 290px;
  12. margin-right: 20px;
  13. &-welcome {
  14. width: 100%;
  15. height: 130px;
  16. padding: 0 20px;
  17. background: #FFFFFF;
  18. border-radius: @border-radius-base;
  19. margin-bottom: 20px;
  20. display: flex;
  21. &-text {
  22. width: 30%;
  23. display: flex;
  24. flex-direction: column;
  25. justify-content: center;
  26. color: @primary-color;
  27. &-first {
  28. font-size: 20px;
  29. font-weight: 500;
  30. }
  31. &-second {
  32. font-size: 24px;
  33. font-weight: 500;
  34. }
  35. }
  36. &-picture {
  37. width: 70%;
  38. img {
  39. width: 100%;
  40. height: 100%;
  41. object-fit: cover;
  42. -webkit-user-drag: none;
  43. }
  44. }
  45. }
  46. &-fast {
  47. width: 100%;
  48. height: 140px;
  49. background: #FFFFFF;
  50. border-radius: @border-radius-base;
  51. }
  52. }
  53. &-weather {
  54. width: 300px;
  55. height: 290px;
  56. padding: 20px 20px 0;
  57. background: #FFFFFF;
  58. border-radius: @border-radius-base;
  59. }
  60. }
  61. &-bottom {
  62. width: 100%;
  63. height: 0;
  64. flex: 1;
  65. padding: 20px;
  66. background: #FFFFFF;
  67. border-radius: @border-radius-base;
  68. display: flex;
  69. justify-content: center;
  70. align-items: center;
  71. }
  72. }