269 lines
4.7 KiB
SCSS
269 lines
4.7 KiB
SCSS
.appPage {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 2;
|
|
|
|
h1 {
|
|
color: var(--primary-color);
|
|
font-size: 28px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: normal;
|
|
}
|
|
|
|
.appPageLogin__wrapper {
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.appPage__pageHeader {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 14px;
|
|
padding: 28px;
|
|
border-left: 4px solid var(--card-borderColor-color);
|
|
|
|
h1, h2, h3 {
|
|
margin: 0;
|
|
}
|
|
|
|
p, span {
|
|
color: var(--text-color-secondary);
|
|
font-size: 17.5px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 120%;
|
|
margin: 0;
|
|
}
|
|
|
|
span {
|
|
margin-left: 10px;
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
|
|
.appPage__spacer {
|
|
width: 100%;
|
|
padding: 24px 0;
|
|
}
|
|
|
|
.appPageSection__hr {
|
|
position: relative;
|
|
width: 100%;
|
|
padding: 0 0 0 30px;
|
|
|
|
&:before {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 1px;
|
|
content: '';
|
|
top: 50%;
|
|
left: 0;
|
|
z-index: 1;
|
|
background-color: #E5E7EB;
|
|
}
|
|
|
|
span {
|
|
font-size: 14px;
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
line-height: normal;
|
|
padding: 0 10px;
|
|
background-color: white;
|
|
z-index: 9;
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
.appPage__content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 48px;
|
|
}
|
|
|
|
.appPageSection {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
|
|
h2 {
|
|
color: var(--global-textColor);
|
|
font-size: 21px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: normal;
|
|
margin: 0 0 24px;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
padding: 5px 0;
|
|
}
|
|
}
|
|
|
|
.appPageSection__withBorder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
width: 100%;
|
|
padding: 17px;
|
|
border-radius: 6px;
|
|
border: 1px solid var(--card-borderColor-color);
|
|
container-name: section_with_border;
|
|
container-type: inline-size;
|
|
|
|
&.disabled {
|
|
filter: grayscale(1);
|
|
opacity: 0.8;
|
|
}
|
|
|
|
h2 {
|
|
color: var(--global-textColor);
|
|
font-size: 21px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: normal;
|
|
margin: 0;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
padding: 5px 0;
|
|
|
|
&.rowContent {
|
|
padding: 7px 0;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 0.3rem;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
ul {
|
|
padding-left: 1rem;
|
|
}
|
|
|
|
button {
|
|
flex: 0 0 auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
@container section_with_border (max-width: 600px) {
|
|
.appPageSection__withBorder {
|
|
.row {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
}
|
|
}
|
|
|
|
.appPageSection__hero {
|
|
display: flex;
|
|
height: 250px;
|
|
width: 100%;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
|
|
.appPageSection__preview {
|
|
padding: 17px 0;
|
|
background: repeating-linear-gradient(
|
|
45deg,
|
|
transparent,
|
|
transparent 10px,
|
|
#f8d282 10px,
|
|
#f8d282 20px
|
|
);
|
|
|
|
.p-button {
|
|
background: white;
|
|
}
|
|
}
|
|
|
|
.appPageSection__row {
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.appPageSection__pMeta {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
justify-content: space-between;
|
|
margin: 0;
|
|
|
|
span {
|
|
font-size: 14px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: normal;
|
|
}
|
|
}
|
|
|
|
.appPageSection__table {
|
|
width: 100%;
|
|
}
|
|
|
|
.appPageSection__titleClickable {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.appTableHeader {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.appPageSection__actions {
|
|
display: flex;
|
|
gap: 24px;
|
|
padding: 24px 0 48px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.appPageSection__tableActions {
|
|
display: flex;
|
|
gap: 24px;
|
|
padding: 0;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.appPageSection__addToFavourites {
|
|
width: 28px;
|
|
height: 28px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background-color: var(--message-info-color);
|
|
color: white;
|
|
padding: 0;
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
&[disabled] {
|
|
background-color: var(--message-info-background);
|
|
}
|
|
} |