90 lines
1.3 KiB
CSS
90 lines
1.3 KiB
CSS
/* TableCanvas.module.css */
|
|
.arrowContainer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 200px; /* Adjust as needed */
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.verticalArrows {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.arrowButton {
|
|
border: none;
|
|
background: transparent;
|
|
font-size: 20px;
|
|
cursor: pointer;
|
|
padding: 10px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.leftArrow {
|
|
position: absolute;
|
|
left: 0;
|
|
}
|
|
|
|
.rightArrow {
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
|
|
.topArrow {
|
|
border: none;
|
|
background: transparent;
|
|
font-size: 20px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.bottomArrow {
|
|
border: none;
|
|
background: transparent;
|
|
font-size: 20px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.buttonStyle {
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
height: 50%;
|
|
}
|
|
|
|
.canvas {
|
|
display: block;
|
|
border-radius: 5px;
|
|
background-color: #e9e9e9;
|
|
}
|
|
|
|
.inputStyle {
|
|
margin-right: 10px;
|
|
padding: 5px;
|
|
font-size: 16px;
|
|
border-radius: 4px;
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
.listStyle {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.listItemStyle {
|
|
background-color: white;
|
|
margin-bottom: 10px;
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
}
|