| @import '../../common/variable.scss'; |
| |
| .root { |
| width: 360px; |
| height: 330px; |
| /* UI Properties */ |
| background: #ffffff 0% 0% no-repeat padding-box; |
| border: 1px solid #e0e0e0; |
| border-radius: 30px; |
| opacity: 1; |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| div { |
| width: 100%; |
| padding: 66px 30px 0px; |
| } |
| p { |
| margin: 0; |
| padding: 0; |
| width: 100%; |
| white-space: nowrap; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| color: $primayrColor; |
| } |
| .title { |
| font-weight: bold; |
| font-size: 24px; |
| margin-bottom: 1.875rem; |
| } |
| .update { |
| font-weight: normal; |
| font-size: 16px; |
| } |
| .desc { |
| font-weight: normal; |
| font-size: 16px; |
| height: 64px; |
| margin-bottom: 44px; |
| white-space: normal; |
| overflow-y: scroll; |
| } |
| .link { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| width: 100%; |
| height: 5rem; |
| /* UI Properties */ |
| background-color: $thirdColor; |
| color: #fff; |
| border-radius: 0px 0px 30px 30px; |
| } |
| .link:hover { |
| background-color: $primayrColor; |
| color: #fff; |
| } |
| } |
| .root:hover { |
| width: 356px; |
| height: 326px; |
| overflow: hidden; |
| div { |
| background-color: $secondColor; |
| padding: 62px 26px 0px; |
| p { |
| color: #fff; |
| } |
| } |
| .link { |
| background-color: #fff; |
| color: $secondColor; |
| cursor: pointer; |
| font-size: 1.75rem; |
| } |
| border: 4px solid #fff; |
| box-shadow: $shodow; |
| } |
| |
| .rootToggle { |
| width: 356px; |
| height: 326px; |
| padding: 62px 26px 0px; |
| border: 4px solid $primayrColor; |
| box-shadow: $shodow; |
| cursor: pointer; |
| } |