Files
anki_convert/static/style.css
2023-06-30 11:23:12 +02:00

42 lines
644 B
CSS
Executable File

*{
font-family: sans-serif;
}
main{
display: flex;
width: 90vw;
height: 50vh;
margin: 0 5vw;
gap: 2rem;
}
main div{
width: 50%;
}
textarea{
width: 90%;
height: 20vh;
margin: 20px 0;
min-height: fit-content;
}
/* button{
border: 1px solid black;
padding: 5px;
border-radius: 2.5px;
} */
input[type="file"] {
display: none;
}
.custom-file-upload, button {
border: 1px solid #313131;
background-color: lightgray;
display: inline-block;
padding: 6px 12px;
cursor: pointer;
font-size: 1rem;
border-radius: .2rem;
}