|
123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .workspace-intro {
- display: flex;
- align-items: center;
- margin-bottom: 16px;
- padding: 20px 30px;
- background-image: url(@/assets/img/workspace-intro.png);
- background-repeat: no-repeat;
- background-position: top right;
- background-size: 100% 100%;
- border-radius: 4px;
-
- &__left {
- padding: 30px 0 34px;
- }
-
- &__right {
- display: flex;
- flex: 1;
- align-items: center;
- justify-content: center;
- }
-
- &__title {
- margin-bottom: 20px;
- color: @text-color;
- font-weight: 500;
- font-size: 20px;
- }
-
- &__content {
- max-width: 980px;
- margin-bottom: 20px;
- color: @text-color-secondary;
- font-size: @font-size-title;
- line-height: 1.8;
- letter-spacing: 1px;
- }
-
- &__icon {
- height: 176px;
- }
- }
|