62 lines
988 B
CSS
62 lines
988 B
CSS
@charset "utf-8";
|
|
|
|
body {
|
|
background: #E7EDEE;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
h1 {
|
|
font-family: Georgia, "Times New Roman", Times, serif;
|
|
font-size: 170%;
|
|
color: #645348;
|
|
font-weight: 100;
|
|
padding: 10px;
|
|
}
|
|
|
|
.container {
|
|
width: 700px;
|
|
margin: 10px auto;
|
|
padding: 10px 15px;
|
|
background: white;
|
|
border: 2px solid #DBDBDB;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
border-radius: 5px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#preview {
|
|
margin-top:30px;
|
|
}
|
|
|
|
#err {
|
|
color: red;
|
|
}
|
|
|
|
#preview img {
|
|
max-width: 100%;
|
|
border: solid #cdcdcd 1px;
|
|
padding:5px;
|
|
border-radius: 3px;
|
|
-webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .2);
|
|
box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .2);
|
|
overflow: hidden;
|
|
}
|
|
|
|
input[type="submit"] {
|
|
border-radius: 10px;
|
|
background-color: #00A2D1;
|
|
border: 0;
|
|
color: white;
|
|
font-weight: bold;
|
|
padding: 6px 15px 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#form {
|
|
margin-top: 30px;
|
|
margin-bottom:30px;
|
|
} |