|
|
@@ -1,449 +1,357 @@
|
|
|
-.centrar-form {
|
|
|
- margin-top: 3%;
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- margin-bottom: 5%;
|
|
|
+/* === ESTRUCTURA PRINCIPAL === */
|
|
|
+.centrar {
|
|
|
+ margin-top: 4%;
|
|
|
+ line-height: auto;
|
|
|
+ text-align: center;
|
|
|
}
|
|
|
|
|
|
-.form-personalizar {
|
|
|
- background-color: white;
|
|
|
-
|
|
|
- box-shadow: rgba(13, 102, 204, 0.342) 0 0 10px 7px;
|
|
|
- padding-top: 40px;
|
|
|
- padding-bottom: 40px;
|
|
|
- padding-right: 40px;
|
|
|
- padding-left: 20px;
|
|
|
-
|
|
|
+.fondo {
|
|
|
+ border-radius: 10px;
|
|
|
+ line-height: 1;
|
|
|
+ display: inline-block;
|
|
|
+ vertical-align: middle;
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
-.form-personalizar-loader {
|
|
|
- background-color: white;
|
|
|
- border-radius: 15px;
|
|
|
- box-shadow: rgba(13, 102, 204, 0.342) 0 0 10px 7px;
|
|
|
- padding-top: 40px;
|
|
|
- padding-bottom: 40px;
|
|
|
- padding-right: 40px;
|
|
|
- padding-left: 20px;
|
|
|
+.tab-container {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ width: 100%;
|
|
|
+ background-color: transparent;
|
|
|
+ padding: 20px 0;
|
|
|
+}
|
|
|
+.tab-container > mat-tab-group {
|
|
|
+ width: 50%;
|
|
|
+ background-color: white;
|
|
|
+ box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
|
|
|
+ align-items: center;
|
|
|
}
|
|
|
|
|
|
-.divRes{
|
|
|
|
|
|
- text-align: center;
|
|
|
-}
|
|
|
-.centrar-buttons {
|
|
|
- display: flex;
|
|
|
- flex-direction: row;
|
|
|
- justify-content: space-around;
|
|
|
+.content {
|
|
|
+ margin: 0;
|
|
|
+ padding: 10px 70px;
|
|
|
+ font-weight: 500;
|
|
|
+ font-size: 32px;
|
|
|
+ color: white;
|
|
|
+ font-family: "Serenity Medium";
|
|
|
}
|
|
|
|
|
|
-.centrar {
|
|
|
- margin-top: 4%;
|
|
|
- line-height: auto;
|
|
|
- text-align: center;
|
|
|
+/* === FORMULARIO === */
|
|
|
+.centrar-form {
|
|
|
+ margin-top: 3%;
|
|
|
+ margin-bottom: 5%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ }
|
|
|
+.form-personalizar,
|
|
|
+.form-personalizar-loader {
|
|
|
+ background-color: white;
|
|
|
+ box-shadow: rgba(13, 102, 204, 0.2) 0 0 10px 7px;
|
|
|
+ padding: 40px;
|
|
|
}
|
|
|
|
|
|
-.fondo {
|
|
|
- border-radius: 10px;
|
|
|
- line-height: 1;
|
|
|
- display: inline-block;
|
|
|
- vertical-align: middle;
|
|
|
|
|
|
+.form {
|
|
|
+ font-family: Roboto;
|
|
|
}
|
|
|
|
|
|
-.content {
|
|
|
- margin-bottom: 0;
|
|
|
- margin-top: 0;
|
|
|
- padding-top: 10px;
|
|
|
- padding-bottom: 10px;
|
|
|
- padding-left: 70px;
|
|
|
- padding-right: 70px;
|
|
|
- font-weight: 500;
|
|
|
- font-size: 32px;
|
|
|
- color: white;
|
|
|
- font-family: "Serenity Medium";
|
|
|
+.fila-form {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
}
|
|
|
|
|
|
-.form {
|
|
|
- font-family: Roboto;
|
|
|
+.text {
|
|
|
+ margin-left: 30px;
|
|
|
+ font-size: 24px;
|
|
|
+ width: 250px;
|
|
|
}
|
|
|
|
|
|
-.fila-form {
|
|
|
- display: flex;
|
|
|
- flex-direction: row;
|
|
|
- justify-content: space-between;
|
|
|
- align-items: center;
|
|
|
+.input {
|
|
|
+ width: 410px;
|
|
|
}
|
|
|
|
|
|
-.input {
|
|
|
- width: 410px;
|
|
|
+/* === SPINNER === */
|
|
|
+mat-spinner,
|
|
|
+.spinner-wrapper {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
}
|
|
|
|
|
|
-input[type="file"] {
|
|
|
- display: none;
|
|
|
+
|
|
|
+.divRes {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ width: 100%;
|
|
|
+ text-align: center;
|
|
|
}
|
|
|
|
|
|
+/* === COLORES === */
|
|
|
.input-line {
|
|
|
-
|
|
|
- padding: 10px;
|
|
|
- border: 1px solid rgb(141, 141, 141);
|
|
|
+ padding: 10px;
|
|
|
+ border: 1px solid rgb(141, 141, 141);
|
|
|
}
|
|
|
|
|
|
.showColor {
|
|
|
- border-radius: 10px;
|
|
|
- height: 30px;
|
|
|
- width: 360px;
|
|
|
+ border-radius: 10px;
|
|
|
+ height: 30px;
|
|
|
+ width: 360px;
|
|
|
}
|
|
|
|
|
|
-.custom-file-upload {
|
|
|
- background-color: #24B27D;
|
|
|
- border: none;
|
|
|
- color: white;
|
|
|
- padding: 5px 10px;
|
|
|
- text-align: center;
|
|
|
- cursor: pointer;
|
|
|
- display: inline-block;
|
|
|
- font-size: 15px;
|
|
|
- border-radius: 5px;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- width: 100px;
|
|
|
+/* === COLOR PICKERS === */
|
|
|
+.style1, .style2, .style3 {
|
|
|
+ appearance: none;
|
|
|
+ background-color: transparent;
|
|
|
+ border: 1px solid rgb(119, 119, 119);
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
|
|
|
-.custom-file-upload:hover {
|
|
|
- background-color: #21a172;
|
|
|
+.style1 {
|
|
|
+ height: 30px;
|
|
|
}
|
|
|
|
|
|
-.text {
|
|
|
- margin-left: 30px;
|
|
|
- font-size: 24px;
|
|
|
- width: 250px;
|
|
|
+.style2,
|
|
|
+.style3 {
|
|
|
+ height: 40px;
|
|
|
}
|
|
|
|
|
|
-.style1 {
|
|
|
- -webkit-appearance: none;
|
|
|
- -moz-appearance: none;
|
|
|
- appearance: none;
|
|
|
- height: 30px;
|
|
|
- background-color: transparent;
|
|
|
- border: 1px solid rgb(119, 119, 119);
|
|
|
- cursor: pointer;
|
|
|
+.style1::-webkit-color-swatch,
|
|
|
+.style2::-webkit-color-swatch,
|
|
|
+.style3::-webkit-color-swatch,
|
|
|
+.style1::-moz-color-swatch,
|
|
|
+.style2::-moz-color-swatch,
|
|
|
+.style3::-moz-color-swatch {
|
|
|
+ border-radius: 5px;
|
|
|
+ border: 1px solid rgb(119, 119, 119);
|
|
|
}
|
|
|
|
|
|
-.style1::-webkit-color-swatch {
|
|
|
- border-radius: 5px;
|
|
|
- border: 1px solid rgb(119, 119, 119);
|
|
|
+/* === DEGRADADO === */
|
|
|
+.container {
|
|
|
+ display: flex;
|
|
|
+ width: 410px;
|
|
|
+ height: 50px;
|
|
|
}
|
|
|
|
|
|
-.style1::-moz-color-swatch {
|
|
|
- border-radius: 5px;
|
|
|
- border: 1px solid rgb(119, 119, 119);
|
|
|
+.tercio {
|
|
|
+ flex-grow: 1;
|
|
|
+ flex-basis: 0;
|
|
|
+ margin: 0 5px;
|
|
|
}
|
|
|
|
|
|
-.style2 {
|
|
|
- -webkit-appearance: none;
|
|
|
- -moz-appearance: none;
|
|
|
- appearance: none;
|
|
|
- height: 40px;
|
|
|
- background-color: transparent;
|
|
|
- border: 1px solid rgb(119, 119, 119);
|
|
|
- cursor: pointer;
|
|
|
+.gradient {
|
|
|
+ height: auto;
|
|
|
+ width: 70%;
|
|
|
}
|
|
|
|
|
|
-.style2::-webkit-color-swatch {
|
|
|
- border-radius: 5px;
|
|
|
- border: 1px solid rgb(119, 119, 119);
|
|
|
+/* === BOTONES === */
|
|
|
+.centrar-buttons {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: space-around;
|
|
|
}
|
|
|
|
|
|
-.style2::-moz-color-swatch {
|
|
|
- border-radius: 5px;
|
|
|
- border: 1px solid rgb(119, 119, 119);
|
|
|
+.button-save,
|
|
|
+.button-reset,
|
|
|
+.button-cancel {
|
|
|
+ border-radius: 5px;
|
|
|
+ font-size: 16px;
|
|
|
+ padding: 8px 15px;
|
|
|
+ border: none;
|
|
|
+ color: white;
|
|
|
+ cursor: pointer;
|
|
|
+ width: auto;
|
|
|
}
|
|
|
|
|
|
-.style3 {
|
|
|
- -webkit-appearance: none;
|
|
|
- -moz-appearance: none;
|
|
|
- appearance: none;
|
|
|
- height: 40px;
|
|
|
- background-color: transparent;
|
|
|
- border: 1px solid rgb(119, 119, 119);
|
|
|
- cursor: pointer;
|
|
|
+.button-save {
|
|
|
+ background-color: #6699cd;
|
|
|
}
|
|
|
|
|
|
-.style3::-webkit-color-swatch {
|
|
|
- border-radius: 5px;
|
|
|
- border: 1px solid rgb(119, 119, 119);
|
|
|
+.button-save:hover {
|
|
|
+ background-color: #5581ac;
|
|
|
}
|
|
|
|
|
|
-.style3::-moz-color-swatch {
|
|
|
- border-radius: 5px;
|
|
|
- border: 1px solid rgb(119, 119, 119);
|
|
|
+.button-reset {
|
|
|
+ background-color: #EC6830;
|
|
|
}
|
|
|
|
|
|
+.button-reset:hover {
|
|
|
+ background-color: #c75a2b;
|
|
|
+}
|
|
|
|
|
|
-
|
|
|
-.container {
|
|
|
- display: flex;
|
|
|
- width: 410px;
|
|
|
- height: 50px;
|
|
|
+.button-cancel {
|
|
|
+ background-color: red;
|
|
|
}
|
|
|
|
|
|
-.tercio {
|
|
|
- flex-grow: 1;
|
|
|
- flex-basis: 0;
|
|
|
- margin-left: 5px;
|
|
|
- margin-right: 5px;
|
|
|
+.button-cancel:hover {
|
|
|
+ background-color: rgb(204, 2, 2);
|
|
|
+}
|
|
|
|
|
|
+/* === IMÁGENES === */
|
|
|
+input[type="file"] {
|
|
|
+ display: none;
|
|
|
}
|
|
|
|
|
|
-.gradient {
|
|
|
- height: auto;
|
|
|
- width: 70%;
|
|
|
+.img-preview {
|
|
|
+ height: 100px;
|
|
|
+ width: 250px;
|
|
|
+ object-fit: contain;
|
|
|
+ margin-top: 10px;
|
|
|
}
|
|
|
|
|
|
-.custom-file-upload {
|
|
|
- display: inline-flex; /* Cambiado a flex para alinear texto + icono */
|
|
|
- align-items: center; /* Centrar verticalmente */
|
|
|
- justify-content: center; /* Centrar horizontalmente */
|
|
|
- gap: 8px; /* Espacio entre texto e icono */
|
|
|
- padding: 10px 20px; /* Más padding horizontal para que no se vea apretado */
|
|
|
+.fila {
|
|
|
+ width: 410px;
|
|
|
+ height: 100px;
|
|
|
+}
|
|
|
+
|
|
|
+/* === BOTONES PERSONALIZADOS === */
|
|
|
+.custom-file-upload,
|
|
|
+.custom-file-change {
|
|
|
+ display: inline-flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ gap: 8px;
|
|
|
+ padding: 10px 20px;
|
|
|
border-radius: 6px;
|
|
|
- background-color: #f1f3f4;
|
|
|
color: #f1f3f4;
|
|
|
font-weight: 500;
|
|
|
font-size: 14px;
|
|
|
cursor: pointer;
|
|
|
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
|
- width: auto; /* Ancho automático para que se ajuste al contenido */
|
|
|
- min-width: 130px; /* Ancho mínimo para que no quede muy pequeño */
|
|
|
-}
|
|
|
-.grid-container {
|
|
|
- width: 410px;
|
|
|
- display: grid;
|
|
|
- gap: 8px;
|
|
|
- grid-template-columns: auto auto auto auto auto;
|
|
|
- padding: 10px;
|
|
|
-}
|
|
|
-
|
|
|
-.grid-item {
|
|
|
- height: 65px;
|
|
|
- width: 65px;
|
|
|
- background-color: rgba(255, 255, 255, 0.8);
|
|
|
- border: 1px solid rgba(146, 146, 146, 0.8);
|
|
|
- text-align: center;
|
|
|
- transition: transform 0.3s ease;
|
|
|
+ width: auto;
|
|
|
+ min-width: 130px;
|
|
|
}
|
|
|
|
|
|
-.grid-item:hover {
|
|
|
- transform: scale(1.1);
|
|
|
+.custom-file-upload {
|
|
|
+ background-color: #2196F3;
|
|
|
}
|
|
|
|
|
|
-/* esto no se si va */
|
|
|
-.zoomed {
|
|
|
- transform: scale(1.1);
|
|
|
- box-shadow: -1px 1px 16px 0px rgb(0 0 0 / 74%);
|
|
|
+.custom-file-upload:hover {
|
|
|
+ background-color: #0086f3;
|
|
|
}
|
|
|
|
|
|
-.button-cancel {
|
|
|
- border-radius: 5px;
|
|
|
- font-size: 16px;
|
|
|
- padding: 8px 15px;
|
|
|
- border: none;
|
|
|
- background-color: red;
|
|
|
- color: white;
|
|
|
- cursor: pointer;
|
|
|
+.custom-file-change {
|
|
|
+ background-color: #EC6830;
|
|
|
}
|
|
|
|
|
|
-.button-cancel:hover {
|
|
|
-
|
|
|
- background-color: rgb(204, 2, 2);
|
|
|
-
|
|
|
+.custom-file-change:hover {
|
|
|
+ background-color: #c75a2b;
|
|
|
}
|
|
|
|
|
|
-.button-save {
|
|
|
- border-radius: 5px;
|
|
|
- font-size: 16px;
|
|
|
- padding: 8px 15px;
|
|
|
- border: none;
|
|
|
- background-color: #6699cd;
|
|
|
- color: white;
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
-
|
|
|
-.button-save:hover {
|
|
|
-
|
|
|
- background-color: #5581ac;
|
|
|
-
|
|
|
-}
|
|
|
-
|
|
|
-.button-reset {
|
|
|
- border-radius: 5px;
|
|
|
- font-size: 16px;
|
|
|
- padding: 8px 15px;
|
|
|
- border: none;
|
|
|
- background-color: #EC6830;
|
|
|
- color: white;
|
|
|
- cursor: pointer;
|
|
|
+/* === TEXTURAS === */
|
|
|
+.grid-container {
|
|
|
+ width: 410px;
|
|
|
+ display: grid;
|
|
|
+ gap: 8px;
|
|
|
+ grid-template-columns: repeat(5, auto);
|
|
|
+ padding: 10px;
|
|
|
}
|
|
|
|
|
|
-.button-reset:hover {
|
|
|
-
|
|
|
- background-color: #c75a2b;
|
|
|
-
|
|
|
+.grid-item {
|
|
|
+ height: 65px;
|
|
|
+ width: 65px;
|
|
|
+ background-color: rgba(255, 255, 255, 0.8);
|
|
|
+ border: 1px solid rgba(146, 146, 146, 0.8);
|
|
|
+ text-align: center;
|
|
|
+ transition: transform 0.3s ease;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-.img-preview {
|
|
|
- height: 100px;
|
|
|
- width: 250px;
|
|
|
- object-fit: contain;
|
|
|
+.grid-item:hover {
|
|
|
+ transform: scale(1.1);
|
|
|
}
|
|
|
|
|
|
-.fila {
|
|
|
- width: 410px;
|
|
|
- height: 100px;
|
|
|
+.zoomed {
|
|
|
+ transform: scale(1.1);
|
|
|
+ box-shadow: -1px 1px 16px 0px rgb(0 0 0 / 74%);
|
|
|
}
|
|
|
|
|
|
+/* Radio de textura con fondo */
|
|
|
.image-container {
|
|
|
- position: relative;
|
|
|
- width: 68px;
|
|
|
- height: 68px;
|
|
|
- transition: transform .2s;
|
|
|
+ position: relative;
|
|
|
+ width: 68px;
|
|
|
+ height: 68px;
|
|
|
+ transition: transform .2s;
|
|
|
}
|
|
|
|
|
|
.image-container:hover {
|
|
|
- position: relative;
|
|
|
- width: 68px;
|
|
|
- height: 68px;
|
|
|
- transform: scale(1.1);
|
|
|
+ transform: scale(1.1);
|
|
|
}
|
|
|
|
|
|
.image {
|
|
|
- position: absolute;
|
|
|
- top: 0;
|
|
|
- left: 0;
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- background-size: cover;
|
|
|
- background-position: center;
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ background-size: cover;
|
|
|
+ background-position: center;
|
|
|
}
|
|
|
|
|
|
input[type="radio"] {
|
|
|
- position: absolute;
|
|
|
- top: 0;
|
|
|
- left: 0;
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- opacity: 0;
|
|
|
- cursor: pointer;
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ opacity: 0;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+/* === RESPONSIVE === */
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
+ .centrar {
|
|
|
+ width: 100%;
|
|
|
+ margin-top: 5%;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
|
|
|
- .centrar {
|
|
|
- width: 100%;
|
|
|
- margin-top: 5%;
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- .fondo {
|
|
|
- width: 85%;
|
|
|
- }
|
|
|
-
|
|
|
- .content {
|
|
|
- margin-bottom: 0;
|
|
|
- margin-top: 0;
|
|
|
- padding-top: 10px;
|
|
|
- padding-bottom: 10px;
|
|
|
- padding-left: 10px;
|
|
|
- padding-right: 10px;
|
|
|
- font-weight: 500;
|
|
|
- font-size: 24px;
|
|
|
- color: white;
|
|
|
- font-family: "Serenity Medium";
|
|
|
- }
|
|
|
-
|
|
|
- .centrar-form {
|
|
|
- margin-top: 50px;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- .fila-form {
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
-
|
|
|
- width: auto;
|
|
|
- }
|
|
|
-
|
|
|
- .text {
|
|
|
- width: auto;
|
|
|
- margin-left: 0;
|
|
|
- }
|
|
|
-
|
|
|
- .input {
|
|
|
- width: auto;
|
|
|
- margin-left: 0;
|
|
|
- }
|
|
|
-
|
|
|
- .showColor {
|
|
|
- border-radius: 10px;
|
|
|
- height: 30px;
|
|
|
- width: 170px;
|
|
|
- }
|
|
|
-
|
|
|
- .container {
|
|
|
- display: flex;
|
|
|
- width: 180px;
|
|
|
- height: 50px;
|
|
|
- }
|
|
|
-
|
|
|
- .centrar-buttons {
|
|
|
- display: flex;
|
|
|
- flex-direction: row;
|
|
|
- justify-content: space-around;
|
|
|
- }
|
|
|
-
|
|
|
- .button-save {
|
|
|
- border-radius: 5px;
|
|
|
- font-size: 16px;
|
|
|
- padding: 8px 15px;
|
|
|
- border: none;
|
|
|
- background-color: #6699cd;
|
|
|
- color: white;
|
|
|
- cursor: pointer;
|
|
|
- width: auto;
|
|
|
- }
|
|
|
-
|
|
|
- .button-cancel {
|
|
|
- border-radius: 5px;
|
|
|
- font-size: 16px;
|
|
|
- padding: 8px 15px;
|
|
|
- border: none;
|
|
|
- background-color: red;
|
|
|
- color: white;
|
|
|
- cursor: pointer;
|
|
|
- width: auto;
|
|
|
- }
|
|
|
-
|
|
|
- .img-preview {
|
|
|
- height: 100px;
|
|
|
- width: 250px;
|
|
|
- object-fit: contain;
|
|
|
- margin-top: 10px;
|
|
|
- }
|
|
|
-
|
|
|
- .grid-container {
|
|
|
- grid-template-columns: repeat(3, 1fr);
|
|
|
- width: 90%;
|
|
|
- display: grid;
|
|
|
- gap: 5px;
|
|
|
- margin-left: 40px;
|
|
|
- }
|
|
|
+ .fondo {
|
|
|
+ width: 85%;
|
|
|
+ }
|
|
|
|
|
|
+ .content {
|
|
|
+ padding: 10px;
|
|
|
+ font-size: 24px;
|
|
|
+ }
|
|
|
|
|
|
+ .centrar-form {
|
|
|
+ margin-top: 50px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .fila-form {
|
|
|
+ flex-direction: column;
|
|
|
+ width: auto;
|
|
|
+ }
|
|
|
+
|
|
|
+ .text {
|
|
|
+ width: auto;
|
|
|
+ margin-left: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .input {
|
|
|
+ width: auto;
|
|
|
+ margin-left: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .showColor {
|
|
|
+ width: 170px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .container {
|
|
|
+ width: 180px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .img-preview {
|
|
|
+ width: 250px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .grid-container {
|
|
|
+ grid-template-columns: repeat(3, 1fr);
|
|
|
+ width: 90%;
|
|
|
+ gap: 5px;
|
|
|
+ margin-left: 40px;
|
|
|
+ }
|
|
|
}
|