227 lines
5.2 KiB
CSS
227 lines
5.2 KiB
CSS
.quick-actions {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
border-radius: 16px;
|
|
box-shadow: 0px 2px 12px 0px rgba(26, 25, 24, 0.03137254901960784);
|
|
background-color: var(--bg-white, #ffffff);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.quick-actions__inner {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
|
|
.quick-actions__grid {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.quick-actions__grid-inner {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
}
|
|
|
|
.quick-actions__item {
|
|
flex: 1;
|
|
height: 80px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-width: 0;
|
|
}
|
|
|
|
.quick-actions__item-inner {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.quick-actions__icon-wrap {
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: var(--radius-sm);
|
|
}
|
|
|
|
.quick-actions__icon-wrap-inner {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.quick-actions__icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
position: relative;
|
|
}
|
|
|
|
.quick-actions__icon-part {
|
|
position: absolute;
|
|
display: block;
|
|
}
|
|
|
|
.quick-actions__icon-part:nth-child(1) {
|
|
width: 7.69%;
|
|
height: 16.67%;
|
|
left: 30.77%;
|
|
top: 8.33%;
|
|
|
|
}
|
|
|
|
.quick-actions__icon-part:nth-child(2) {
|
|
width: 7.69%;
|
|
height: 16.67%;
|
|
left: 61.54%;
|
|
top: 8.33%;
|
|
|
|
}
|
|
|
|
.quick-actions__icon-part:nth-child(4) {
|
|
width: 7.69%;
|
|
height: 16.67%;
|
|
left: 30.77%;
|
|
top: 58.33%;
|
|
|
|
}
|
|
|
|
.quick-actions__icon-part:nth-child(5) {
|
|
width: 7.69%;
|
|
height: 16.67%;
|
|
left: 61.54%;
|
|
top: 58.33%;
|
|
|
|
}
|
|
|
|
.quick-actions__border-wrap {
|
|
position: absolute;
|
|
left: 12.5%;
|
|
top: 25%;
|
|
width: 75%;
|
|
height: 50%;
|
|
}
|
|
|
|
.quick-actions__rect {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.quick-actions__border {
|
|
position: absolute;
|
|
inset: -1px;
|
|
border-radius: 2px;
|
|
border: 1px solid var(--accent-orange);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.quick-actions__icon-img {width: 20px;
|
|
height: 20px;
|
|
display: block;
|
|
}
|
|
|
|
.quick-actions__title,
|
|
.quick-actions__title-2,
|
|
.quick-actions__title-3,
|
|
.quick-actions__title-4,
|
|
.quick-actions__coach,
|
|
.quick-actions__text,
|
|
.quick-actions__text-2,
|
|
.quick-actions__points-desc {
|
|
font-size: var(--font-size-sm);
|
|
font-family: var(--font-family);
|
|
font-weight: 500;
|
|
color: var(--text-dark);
|
|
text-align: center;
|
|
}
|
|
|
|
.quick-actions__divider {
|
|
width: 100%;
|
|
height: 1px;
|
|
background-color: var(--border-light, #e9edf2);
|
|
}
|
|
|
|
/* 第�?�?�??�?*/
|
|
.quick-actions__grid:nth-of-type(1) .quick-actions__item:nth-child(1),
|
|
.quick-actions__grid:nth-of-type(1) .quick-actions__item:nth-child(1) .quick-actions__icon-wrap {
|
|
background-color: rgba(255, 243, 238, 1);
|
|
}
|
|
|
|
.quick-actions__grid:nth-of-type(1) .quick-actions__item:nth-child(2),
|
|
.quick-actions__grid:nth-of-type(1) .quick-actions__item:nth-child(2) .quick-actions__icon-wrap {
|
|
background-color: rgba(240, 250, 245, 1);
|
|
}
|
|
|
|
.quick-actions__grid:nth-of-type(1) .quick-actions__item:nth-child(2) .quick-actions__icon-img {
|
|
|
|
}
|
|
|
|
.quick-actions__grid:nth-of-type(1) .quick-actions__item:nth-child(3),
|
|
.quick-actions__grid:nth-of-type(1) .quick-actions__item:nth-child(3) .quick-actions__icon-wrap {
|
|
background-color: rgba(235, 243, 250, 1);
|
|
}
|
|
|
|
.quick-actions__grid:nth-of-type(1) .quick-actions__item:nth-child(3) .quick-actions__icon-img {
|
|
|
|
}
|
|
|
|
.quick-actions__grid:nth-of-type(1) .quick-actions__item:nth-child(4),
|
|
.quick-actions__grid:nth-of-type(1) .quick-actions__item:nth-child(4) .quick-actions__icon-wrap {
|
|
background-color: rgba(255, 243, 238, 1);
|
|
}
|
|
|
|
.quick-actions__grid:nth-of-type(1) .quick-actions__item:nth-child(4) .quick-actions__icon-img {
|
|
|
|
}
|
|
|
|
/* 第�?�?�??�?*/
|
|
.quick-actions__grid:nth-of-type(3) .quick-actions__item:nth-child(1),
|
|
.quick-actions__grid:nth-of-type(3) .quick-actions__item:nth-child(1) .quick-actions__icon-wrap {
|
|
background-color: rgba(255, 236, 236, 1);
|
|
}
|
|
|
|
.quick-actions__grid:nth-of-type(3) .quick-actions__item:nth-child(1) .quick-actions__icon-img {
|
|
|
|
}
|
|
|
|
.quick-actions__grid:nth-of-type(3) .quick-actions__item:nth-child(2),
|
|
.quick-actions__grid:nth-of-type(3) .quick-actions__item:nth-child(2) .quick-actions__icon-wrap {
|
|
background-color: rgba(255, 243, 238, 1);
|
|
}
|
|
|
|
.quick-actions__grid:nth-of-type(3) .quick-actions__item:nth-child(2) .quick-actions__icon-img {
|
|
|
|
}
|
|
|
|
.quick-actions__grid:nth-of-type(3) .quick-actions__item:nth-child(3),
|
|
.quick-actions__grid:nth-of-type(3) .quick-actions__item:nth-child(3) .quick-actions__icon-wrap {
|
|
background-color: rgba(240, 250, 245, 1);
|
|
}
|
|
|
|
.quick-actions__grid:nth-of-type(3) .quick-actions__item:nth-child(3) .quick-actions__icon-img {
|
|
|
|
}
|
|
|
|
.quick-actions__grid:nth-of-type(3) .quick-actions__item:nth-child(4),
|
|
.quick-actions__grid:nth-of-type(3) .quick-actions__item:nth-child(4) .quick-actions__icon-wrap {
|
|
background-color: rgba(235, 243, 250, 1);
|
|
}
|
|
|
|
.quick-actions__grid:nth-of-type(3) .quick-actions__item:nth-child(4) .quick-actions__icon-img {
|
|
|
|
}
|