2023-09-20 17:27:25 +02:00
|
|
|
.container{
|
2023-10-18 21:21:58 +02:00
|
|
|
margin: auto 7vw;
|
2023-09-20 17:27:25 +02:00
|
|
|
padding: 75px;
|
|
|
|
padding-top: 70px !important;
|
|
|
|
position: relative;
|
2023-10-18 21:21:58 +02:00
|
|
|
display: grid;
|
|
|
|
grid-template-areas:
|
|
|
|
"dataSet columns"
|
|
|
|
"tableQuarry columns"
|
|
|
|
"button ."
|
|
|
|
"resoult resoult";
|
|
|
|
grid-column-gap: 2vw;
|
|
|
|
grid-row-gap: 1vh;
|
2023-09-20 17:27:25 +02:00
|
|
|
}
|
|
|
|
|
2023-10-18 21:21:58 +02:00
|
|
|
.dataset{
|
|
|
|
grid-area: dataSet;
|
2023-09-20 17:27:25 +02:00
|
|
|
}
|
|
|
|
|
2023-10-18 21:21:58 +02:00
|
|
|
.table{
|
|
|
|
grid-area: tableQuarry;
|
2023-09-20 17:27:25 +02:00
|
|
|
}
|
|
|
|
|
2023-10-18 21:21:58 +02:00
|
|
|
.colums{
|
|
|
|
grid-area: columns;
|
2023-09-20 17:27:25 +02:00
|
|
|
}
|
|
|
|
|
2023-10-18 21:21:58 +02:00
|
|
|
.test{
|
|
|
|
grid-area: button;
|
|
|
|
}
|
|
|
|
|
|
|
|
.Resoult{
|
|
|
|
grid-area: resoult;
|
|
|
|
}
|
|
|
|
|
|
|
|
.colums input{
|
|
|
|
height: 100%;
|
2023-09-20 17:27:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
input.no-margin{
|
|
|
|
margin: 0 !important;
|
|
|
|
}
|
|
|
|
|
2023-10-18 21:21:58 +02:00
|
|
|
input{
|
2023-09-20 17:27:25 +02:00
|
|
|
width: 100%;
|
2023-10-18 21:21:58 +02:00
|
|
|
height: 5vh;
|
2023-09-20 17:27:25 +02:00
|
|
|
border-radius: 17px;
|
|
|
|
border: none;
|
|
|
|
background-color: #F3F3F3;
|
|
|
|
color: black;
|
2023-10-18 21:21:58 +02:00
|
|
|
padding-left: 10px;
|
|
|
|
|
2023-09-20 17:27:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
padding: 10px 20px;
|
|
|
|
background-color: #007bff;
|
|
|
|
color: #fff;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
width: 50%;
|
|
|
|
border-radius: 17px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:hover {
|
|
|
|
background-color: #0056b3;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
width: 100%;
|
|
|
|
height: 200px;
|
|
|
|
border-radius: 17px;
|
|
|
|
border: none;
|
|
|
|
background-color: #F3F3F3;
|
|
|
|
color: black;
|
2023-10-18 21:21:58 +02:00
|
|
|
padding-left: 10px;
|
|
|
|
padding-top: 10px;
|
2023-09-20 17:27:25 +02:00
|
|
|
}
|