49 lines
559 B
CSS
49 lines
559 B
CSS
body {
|
|
background: #fff;
|
|
margin: 0;
|
|
border: none;
|
|
font-family: Verdana, sans-serif;
|
|
}
|
|
|
|
a {
|
|
color: gray;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
|
|
img {
|
|
margin: 0;
|
|
border: none;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
#main {
|
|
max-width: 1024px;
|
|
margin: auto;
|
|
padding:10px;
|
|
min-width: 360px;
|
|
}
|
|
|
|
.image-block {
|
|
display: flex;
|
|
}
|
|
|
|
.image-block div {
|
|
width: 50%;
|
|
text-align: center;
|
|
}
|
|
|
|
.image-block img {
|
|
max-width: 200px;
|
|
}
|
|
|
|
.upload-image-text {
|
|
text-align: center;
|
|
}
|
|
|
|
.image-results {
|
|
text-align: center;
|
|
} |