Inzynierka_Gwiazdy/react/src/App.css

78 lines
1.0 KiB
CSS
Raw Normal View History

2023-09-20 17:27:25 +02:00
.container{
margin: auto 7vw;
2023-09-20 17:27:25 +02:00
padding: 75px;
padding-top: 70px !important;
position: relative;
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
}
.dataset{
grid-area: dataSet;
2023-09-20 17:27:25 +02:00
}
.table{
grid-area: tableQuarry;
2023-09-20 17:27:25 +02:00
}
.colums{
grid-area: columns;
2023-09-20 17:27:25 +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;
}
input{
2023-09-20 17:27:25 +02:00
width: 100%;
height: 5vh;
2023-09-20 17:27:25 +02:00
border-radius: 17px;
border: none;
background-color: #F3F3F3;
color: black;
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;
padding-left: 10px;
padding-top: 10px;
2023-09-20 17:27:25 +02:00
}