hyeonseonam_auto-classifier/styles.css
2023-03-20 01:03:55 +09:00

47 lines
No EOL
1,001 B
CSS

h1 {
margin-top: 1.2em;
}
.setting-item-child {
background-color: var(--background-secondary);
padding-left: 1em;
padding-right: 1em;
border-top: 0.5px solid var(--background-primary);
/* animation: child-enter 0.3s ease; */
}
.setting-item-child textarea, .setting-item-child input {
background-color: var(--background-primary);
}
setting-item-description
@keyframes child-enter {
0% {
opacity: 0;
transform: translateY(-10px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.wide-text-area .setting-item-info, .wide-text-area .setting-item-description {
flex: 0.3 1 auto;
}
.block-control-item {
flex-direction: column;
}
.block-control-item .setting-item-control, .block-control-item .setting-item-info {
margin-top: 0.5em;
width: 100%;
margin-right: auto;
}
.height10-text-area textarea {
width: 100%;
height: 10em;
}
.height20-text-area textarea {
width: 100%;
height: 20em;
}