| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .workbench {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- &-top {
- margin-bottom: 20px;
- display: flex;
- &-style {
- width: 100%;
- height: 290px;
- margin-right: 20px;
- &-welcome {
- width: 100%;
- height: 130px;
- padding: 0 20px;
- background: #FFFFFF;
- border-radius: @border-radius-base;
- margin-bottom: 20px;
- display: flex;
- &-text {
- width: 30%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- color: @primary-color;
- &-first {
- font-size: 20px;
- font-weight: 500;
- }
- &-second {
- font-size: 24px;
- font-weight: 500;
- }
- }
- &-picture {
- width: 70%;
- img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- -webkit-user-drag: none;
- }
- }
- }
- &-fast {
- width: 100%;
- height: 140px;
- background: #FFFFFF;
- border-radius: @border-radius-base;
- }
- }
- &-weather {
- width: 300px;
- height: 290px;
- padding: 20px 20px 0;
- background: #FFFFFF;
- border-radius: @border-radius-base;
- }
- }
- &-bottom {
- width: 100%;
- height: 0;
- flex: 1;
- padding: 20px;
- background: #FFFFFF;
- border-radius: @border-radius-base;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
|