2026-04-14 17:41:39 +02:00

122 lines
2.4 KiB
CSS

.createmenu {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
row-gap: 1rem;
position: relative;
}
.createmenu-container {
padding: 2rem;
display: flex;
width: 100%;
column-gap: 2rem;
flex: 1;
}
.createmenu-settings {
width: 40%;
height: 100%;
display: flex;
flex-direction: column;
row-gap: 1rem;
}
.createmenu-adjustments {
width: 30%;
height: 100%;
display: flex;
flex-direction: column;
row-gap: 1rem;
}
.createmenu-settings h1 {
color: #FFF;
color: color(display-p3 1 1 1);
leading-trim: both;
text-edge: cap;
font-family: SF Pro Rounded;
font-size: 1.07538rem;
font-style: normal;
font-weight: 600;
line-height: 143.836%;
/* 1.54675rem */
}
.createmenu-adjustments h1 {
color: #FFF;
color: color(display-p3 1 1 1);
leading-trim: both;
text-edge: cap;
font-family: SF Pro Rounded;
font-size: 1.07538rem;
font-style: normal;
font-weight: 600;
line-height: 143.836%;
/* 1.54675rem */
}
.createmenu-settings-container {
width: 100%;
flex: 1;
padding: 1rem;
border-radius: 0.625rem;
border: 0.125rem solid #FF7B80;
border: 0.125rem solid color(display-p3 1 0.5167 0.5167);
background: rgba(255, 123, 128, 0.10);
background: color(display-p3 1 0.5176 0.5176 / 0.10);
display: flex;
flex-direction: column;
row-gap: 1rem;
}
.createmenu-adjustments-container {
width: 100%;
flex: 1;
border-radius: 0.625rem;
border: 0.125rem solid #FF7B80;
border: 0.125rem solid color(display-p3 1 0.5167 0.5167);
background: rgba(255, 123, 128, 0.10);
background: color(display-p3 1 0.5176 0.5176 / 0.10);
padding: 1rem;
display: flex;
flex-direction: column;
row-gap: 1rem;
}
.create-business-button {
width: 100%;
height: 2.5rem;
border-radius: 0.4375rem;
border: 0.1654rem solid rgba(0, 0, 0, 0.20);
border: 0.1654rem solid color(display-p3 0 0 0 / 0.20);
background: #75B7FF;
background: color(display-p3 0.5167 0.71 1);
display: flex;
align-items: center;
justify-content: center;
color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: SF Pro Rounded;
font-size: 0.875rem;
font-style: normal;
font-weight: 600;
line-height: 143.836%;
/* 1.25856rem */
cursor: pointer;
transition: all .2s ease;
}
.create-business-button:hover {
opacity: 0.9;
}