Spaces:
Running
Running
File size: 1,967 Bytes
2fd41e1 75ef8cf 2fd41e1 75ef8cf 2fd41e1 75ef8cf 2fd41e1 75ef8cf 2fd41e1 75ef8cf 2fd41e1 75ef8cf |
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 |
.container {
margin-top: 20px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
margin-bottom: 20px;
}
.inputArea{
display: flex;
width: 80%;
justify-content: space-between;
text-align: center;
margin: auto;
margin-bottom: 2em;
}
.imageHolder{
display: flex;
width :50vw;
height:70vh;
justify-content: center;
align-items:center;
margin: auto;
}
#imageBox {
width: 100%;
height: 100%;
margin-bottom: auto;
/* background-color: blueviolet; */
}
#lable{
max-width: 12%;
min-width:12%;
text-align: center;
}
#promptText{
font-size: 1em;
width: 60%;
text-align: center;
}
#btn-gen, #btn-clear{
max-width: 12%;
min-width: 12%;
text-align: center;
cursor:pointer;
}
#download{
max-width: 12%;
min-width: 12%;
font-size: 1em;
text-align: center;
cursor:pointer;
border-radius : 5px;
}
@media only screen and (max-width: 380px) {
.imageHolder{
display: flex;
width :98vw;
height:50vh;
justify-content: center;
align-items:center;
}
.inputArea{
display: flex;
width: 100%;
justify-content: space-between;
text-align: center;
margin: auto;
margin-bottom: 2em;
}
#promptText{
font-size:0.8em;
width: 50%;
text-align: center;
}
#btn-gen, #btn-clear {
min-width: 15%;
min-height:10%;
max-height:10%;
font-size: 50%;
text-align: center;
cursor:pointer;
border-radius:5px;
}
#lable{
font-size: 50%;
max-width: 15%;
text-align: center;
}
#download{
max-width: 35%;
min-width: 35%;
font-size: 60%;
text-align: center;
cursor:pointer;
border-radius : 5px;
}
} |