|
@import url('https://fonts.cdnfonts.com/css/bitsumishi'); |
|
|
|
h1 { |
|
font-family: "Bitsumishi", sans-serif; |
|
font-size: 50px; |
|
color: rgb(255, 255, 255); |
|
margin: 10px; |
|
letter-spacing: 3px; |
|
} |
|
|
|
body { |
|
text-align: center; |
|
background-color: rgb(0, 0, 0); |
|
display: flex; |
|
flex-direction: column; |
|
justify-content: center; |
|
margin: auto; |
|
margin-top: 20px; |
|
overflow: auto; |
|
font-family: "Bitsumishi", sans-serif; |
|
} |
|
|
|
.entries { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
justify-content: space-evenly; |
|
height: 90vh; |
|
width: fit-content; |
|
} |
|
|
|
.entry { |
|
width: 20vw; |
|
height: 25vh; |
|
border: 2px solid rgb(32, 161, 236); |
|
font-family: "Bitsumishi", sans-serif; |
|
background-color: transparent; |
|
border-top-left-radius: 30px; |
|
border-bottom-right-radius: 30px; |
|
padding: 25px; |
|
resize: none; |
|
outline: none; |
|
color: white; |
|
font-size: medium; |
|
letter-spacing: 1px; |
|
} |
|
|
|
.main { |
|
display: flex; |
|
width: 90vw; |
|
justify-content: space-between; |
|
align-items: center; |
|
margin: auto; |
|
} |
|
|
|
#submit { |
|
background-color: transparent; |
|
font-family: "Bitsumishi", sans-serif; |
|
height: fit-content; |
|
padding: 10px; |
|
border: 2px solid rgb(32, 161, 236); |
|
color: rgb(32, 161, 236); |
|
font-size: medium; |
|
cursor: pointer; |
|
border-top-left-radius: 10px; |
|
border-bottom-right-radius: 10px; |
|
box-shadow: 0px 0px 100px 5px rgb(0, 0, 0) inset; |
|
transition: 0.5s; |
|
margin-top: 10px; |
|
width: 50%; |
|
} |
|
|
|
#submit:hover { |
|
box-shadow: 0px 0px 20px 5px rgb(33, 77, 255); |
|
transition: 0.5s; |
|
} |
|
|
|
.other-inputs { |
|
padding: 10px; |
|
outline: none; |
|
border: 2px solid rgb(32, 161, 236); |
|
border-radius: 10px; |
|
font-size: medium; |
|
background-color: transparent; |
|
font-family: "Bitsumishi", sans-serif; |
|
width: 100%; |
|
color: white; |
|
} |
|
|
|
.control { |
|
display: flex; |
|
flex-direction: column; |
|
justify-content: space-evenly; |
|
text-align: left; |
|
margin-left: 100px; |
|
} |
|
|
|
.data-preview { |
|
margin-top: 25px; |
|
} |
|
|
|
.data{ |
|
background-color:rgb(22, 22, 22); |
|
padding: 25px; |
|
width: 20vw; |
|
height: 15vw; |
|
color: rgb(255, 255, 255); |
|
border-radius: 10px; |
|
overflow: scroll; |
|
} |
|
|
|
.other-fields{ |
|
display: flex; |
|
flex-direction: column; |
|
width: 20%; |
|
justify-content: space-around; |
|
height: 32vh; |
|
} |
|
|
|
.all-inputs{ |
|
display: flex; |
|
width: 63vw; |
|
justify-content: space-between; |
|
font-weight: 100; |
|
} |
|
|
|
.center-input{ |
|
padding: 10px; |
|
outline: none; |
|
border: 2px solid rgb(32, 161, 236); |
|
border-radius: 10px; |
|
font-size: medium; |
|
background-color: transparent; |
|
font-family: "Bitsumishi", sans-serif; |
|
width: 45%; |
|
color: white; |
|
} |
|
|
|
.center-inputs{ |
|
display: flex; |
|
width: 63vw; |
|
justify-content: space-between; |
|
} |
|
|
|
#output{ |
|
width: 60vw |
|
} |
|
|
|
#current-data-preview{ |
|
outline: none; |
|
border: none; |
|
resize: none; |
|
font-size: 14px; |
|
} |