57 lines
702 B
CSS
57 lines
702 B
CSS
body {
|
|
background: #fff;
|
|
margin: 0;
|
|
border: none;
|
|
color: #696969;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
line-height: 180%;
|
|
}
|
|
|
|
a {
|
|
color: black;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
|
|
img {
|
|
margin: 0;
|
|
border: none;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
color: #696969;
|
|
}
|
|
|
|
form {
|
|
border: 1px solid #696969;
|
|
padding: 0 10px 0 10px;
|
|
}
|
|
|
|
#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;
|
|
} |