File size: 2,973 Bytes
6e73cd3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
@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;
} |