| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- .nut-theme-dark .nut-cell {
- background: #1b1b1b;
- color: #fff;
- box-shadow: none;
- }
- .nut-cell {
- position: relative;
- display: flex;
- width: 100%;
- line-height: 20px;
- padding: 13px 16px;
- background: #fff;
- border-radius: 6px;
- box-shadow: 0px 1px 7px 0px rgb(237, 238, 241);
- font-size: 14px;
- color: #666666;
- box-sizing: border-box;
- }
- .nut-cell--center {
- align-items: center;
- }
- .nut-cell--large {
- font-size: 16px;
- padding: 15px 16px;
- }
- .nut-cell--large .nut-cell__title-desc {
- font-size: 14px;
- }
- .nut-cell:last-child::after {
- border: 0 !important;
- }
- .nut-cell::after {
- position: absolute;
- box-sizing: border-box;
- content: " ";
- pointer-events: none;
- right: 16px;
- bottom: 0;
- left: 16px;
- transform: scaleY(0.5);
- }
- .nut-cell:active::before {
- opacity: 0.1;
- }
- .nut-cell--clickable {
- cursor: pointer;
- }
- .nut-cell--clickable::before {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 100%;
- height: 100%;
- background-color: #000;
- border: inherit;
- border-color: #000;
- border-radius: inherit;
- transform: translate(-50%, -50%);
- opacity: 0;
- content: " ";
- }
- .nut-cell__icon {
- display: flex;
- flex-direction: row;
- margin-right: 0 4px 0 0px;
- }
- .nut-cell__title {
- display: flex;
- flex-direction: column;
- flex: 1;
- }
- .nut-cell__title-desc {
- font-size: 12px;
- }
- .nut-cell__value {
- display: inline-block;
- text-align: right;
- font-size: 14px;
- color: #cccccc;
- }
- .nut-cell__value--alone {
- color: #666666;
- }
- .nut-cell__link {
- color: #979797;
- }
|