cm107's picture
Initial commit
ef75ac1
body {
padding: 2rem;
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
overflow: auto;
}
.card {
max-width: 620px;
margin: 0 auto;
padding: 16px;
border: 1px solid lightgray;
border-radius: 16px;
}
.card p {
color: rgb(107, 114, 128);
font-size: 15px;
margin-bottom: 10px;
margin-top: 5px;
}
.card h1 {
font-size: 16px;
margin-top: 0;
}
.card p:last-child {
margin-bottom: 0;
}
#mainContainer {
display: flex;
/* width: fit-content; */
width: 800px;
/* height: fit-content; */
height: 600px;
background-color: gray;
}
#resultContainer {
width: 65%;
height: 50%;
margin-left: 5%;
background-color: red;
}
#resultContainer img {
display: flex;
max-width: 100%;
height: 100%;
justify-content: center;
align-items: center;
margin-left: auto;
margin-right: auto;
}
#sidebarContainer {
width: 35%;
height: 50%;
margin-right: 5%;
background-color: green;
}
#scDropZone {
display: flex;
border: 5px solid blue;
width: fit-content;
height: calc(20% - 5px * 2);
margin-left: auto;
margin-right: auto;
padding: 5px;
color: blue;
background-color: rgba(0.0, 255, 255, 0.2);
}
#scDropZone * {
text-align: middle;
margin-top: auto;
margin-bottom: auto;
}
#scDropImages {
display: flex;
max-width: 100%;
height: calc(20% - 5px * 2);
justify-content: center;
margin-left: auto;
margin-right: auto;
border: 5px solid rgba(0, 255, 255, 0);
}
#scDropImages .hoverDropImage {
border: 5px solid white;
}
#scDropImages .selectedDropImage {
border: 5px solid greenyellow;
}
.centeredBox {
border: 5px solid rgba(0, 0, 0, 0);
}
.centeredBox * {
text-align: middle;
margin-top: auto;
margin-bottom: auto;
}
.centeredBox p {
color: greenyellow;
margin-left: 10px;
}
.centeredBox input {
background-color: white;
width: 75%;
margin-right: 10px;
}
#scPromptsContainer {
/* width: fit-content; */
height: calc(60% - 5px * 2 * 2);
border: 5px solid rgba(128, 0, 128, 0);
}
#scMaxSidePrompt {
display: flex;
height: calc(33% - 5px * 2);
margin-top: auto;
margin-bottom: auto;
padding-left: 10px;
}
#scNumIters {
display: flex;
height: calc(33% - 5px * 2);
}
#scBtnBox {
display: flex;
height: calc(34% - 5px * 2);
}
#scBtnBox button {
margin-left: auto;
margin-right: auto;
width: 40%;
height: 75%;
font-size: 12px;
border: 2px solid greenyellow;
color: greenyellow;
background-color: blue;
border-radius: 3px;
}
#scBtnBox button.hoverScBtn {
border: 2px solid red;
}