|
- .quick-start {
- width: calc(100% - 326px);
- padding: 20px 30px;
- background-color: white;
- border-radius: 4px;
-
- &__title {
- margin-bottom: 20px;
- color: @text-color;
- font-weight: 500;
- font-size: @font-size-title;
- }
-
- &__content {
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 610px;
- background-image: url(@/assets/img/workspace-quick-start.png);
- background-repeat: no-repeat;
- background-position: top left;
- background-size: 100% 100%;
-
- &__canvas {
- position: relative;
- width: 1223px;
- height: 610px;
- transform-origin: center left;
-
- &__model {
- position: absolute;
- top: 358px;
- left: 920px;
- display: flex;
- flex-direction: column;
- align-items: center;
- color: @primary-color;
- font-size: @font-size;
- }
-
- &__task {
- position: absolute;
- top: 110px;
- left: 603px;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 131px;
- height: 41px;
- color: @primary-color;
- font-size: @font-size;
- background-color: rgba(22, 100, 255, 0.05);
- border: 1px dashed @primary-color;
- border-radius: 4px;
- box-shadow: 0px 0px 6px rgba(22, 100, 255, 0.07);
- }
- }
- }
- }
-
- .work-flow {
- position: absolute;
- width: 192px;
- padding: 15px;
- background-color: white;
- border: 1px solid;
- border-color: rgba(22, 100, 255, 0.08);
- border-radius: 0px 8px 0px 0px;
- box-shadow: 0px 0px 10px rgba(22, 100, 255, 0.06);
-
- &__content {
- color: @text-color-secondary;
- font-size: @font-size;
- }
-
- &__tips {
- position: absolute;
- top: -16px;
- left: 0;
- padding: 4px 10px;
- color: white;
- font-size: @font-size;
- background-color: #333333;
- }
- }
-
- .work-arrow {
- position: absolute;
- border: 0 dashed @primary-color;
-
- &__img {
- position: absolute;
- }
- }
|